-- Softaculous SQL Dump
-- http://www.softaculous.com
--
-- Host: localhost
-- Generation Time: November 11, 2021, 11:45 pm
-- Server version: 10.3.30
-- PHP Version: 7.3.30

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `deugdyrc_wp386`
--

-- --------------------------------------------------------

--
-- Table structure for table `wpui_commentmeta`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `wpui_comments`
--

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

--
-- Dumping data for table `wpui_comments`
--

INSERT INTO `wpui_comments` VALUES
(1, 1, 'A WordPress Commenter', 'wapuu@wordpress.example', 'https://wordpress.org/', '', '2021-11-02 09:31:10', '2021-11-02 09:31:10', 'Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href="https://gravatar.com">Gravatar</a>.', 0, '1', '', 'comment', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpui_e_submissions`
--

CREATE TABLE `wpui_e_submissions` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `type` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `hash_id` varchar(60) COLLATE utf8mb4_unicode_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_ci NOT NULL,
  `referer_title` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `element_id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `form_name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
  `campaign_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip` varchar(46) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_agent` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `actions_count` int(11) DEFAULT 0,
  `actions_succeeded_count` int(11) DEFAULT 0,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_read` tinyint(1) NOT NULL DEFAULT 0,
  `meta` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `hash_id_unique_index` (`hash_id`),
  KEY `main_meta_id_index` (`main_meta_id`),
  KEY `hash_id_index` (`hash_id`),
  KEY `type_index` (`type`),
  KEY `post_id_index` (`post_id`),
  KEY `element_id_index` (`element_id`),
  KEY `campaign_id_index` (`campaign_id`),
  KEY `user_id_index` (`user_id`),
  KEY `user_ip_index` (`user_ip`),
  KEY `status_index` (`status`),
  KEY `is_read_index` (`is_read`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`),
  KEY `referer_index` (`referer`(191)),
  KEY `referer_title_index` (`referer_title`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpui_e_submissions_actions_log`
--

CREATE TABLE `wpui_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_ci NOT NULL,
  `action_label` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `log` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at_gmt` datetime NOT NULL,
  `updated_at_gmt` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `action_name_index` (`action_name`),
  KEY `status_index` (`status`),
  KEY `created_at_gmt_index` (`created_at_gmt`),
  KEY `updated_at_gmt_index` (`updated_at_gmt`),
  KEY `created_at_index` (`created_at`),
  KEY `updated_at_index` (`updated_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpui_e_submissions_values`
--

CREATE TABLE `wpui_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_ci DEFAULT NULL,
  `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `key_index` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpui_links`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `wpui_litespeed_url`
--

CREATE TABLE `wpui_litespeed_url` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `url` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
  `cache_tags` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  UNIQUE KEY `url` (`url`(191)),
  KEY `cache_tags` (`cache_tags`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpui_litespeed_url_file`
--

CREATE TABLE `wpui_litespeed_url_file` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `url_id` bigint(20) NOT NULL,
  `vary` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of final vary',
  `filename` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'md5 of file content',
  `type` tinyint(4) NOT NULL COMMENT 'css=1,js=2,ccss=3,ucss=4',
  PRIMARY KEY (`id`),
  KEY `filename` (`filename`),
  KEY `type` (`type`),
  KEY `url_id_2` (`url_id`,`vary`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wpui_options`
--

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

--
-- Dumping data for table `wpui_options`
--

INSERT INTO `wpui_options` VALUES
(1, 'siteurl', 'http://stylosoul.grupogalileo.com.co', 'yes'),
(2, 'home', 'http://stylosoul.grupogalileo.com.co', 'yes'),
(3, 'blogname', 'My Blog', 'yes'),
(4, 'blogdescription', 'My WordPress Blog', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', 'admin@stylosoul.grupogalileo.com.co', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '0', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', 'login@example.com', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'open', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '0', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%year%/%monthnum%/%day%/%postname%/', 'yes'),
(29, 'rewrite_rules', 'a:114:{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: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:39:"index.php?&page_id=12&cpage=$matches[1]";s:41:"comments/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:36:"comments/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:17:"comments/embed/?$";s:21:"index.php?&embed=true";s:44:"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:39:"search/(.+)/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:20:"search/(.+)/embed/?$";s:34:"index.php?s=$matches[1]&embed=true";s:32:"search/(.+)/page/?([0-9]{1,})/?$";s:41:"index.php?s=$matches[1]&paged=$matches[2]";s:14:"search/(.+)/?$";s:23:"index.php?s=$matches[1]";s:47:"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:42:"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:23:"author/([^/]+)/embed/?$";s:44:"index.php?author_name=$matches[1]&embed=true";s:35:"author/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?author_name=$matches[1]&paged=$matches[2]";s:17:"author/([^/]+)/?$";s:33:"index.php?author_name=$matches[1]";s:69:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:45:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$";s:74:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]";s:39:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$";s:63:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]";s:56:"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:51:"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:32:"([0-9]{4})/([0-9]{1,2})/embed/?$";s:58:"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true";s:44:"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]";s:26:"([0-9]{4})/([0-9]{1,2})/?$";s:47:"index.php?year=$matches[1]&monthnum=$matches[2]";s:43:"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:38:"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:19:"([0-9]{4})/embed/?$";s:37:"index.php?year=$matches[1]&embed=true";s:31:"([0-9]{4})/page/?([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&paged=$matches[2]";s:13:"([0-9]{4})/?$";s:26:"index.php?year=$matches[1]";s:58:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:68:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:88:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:83:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:83:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:64:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:53:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$";s:91:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$";s:85:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1";s:77:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:97:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]";s:72:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:97:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]";s:65:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$";s:98:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]";s:72:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$";s:98:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]";s:61:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$";s:97:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]";s:47:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:57:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:77:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:72:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:72:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:53:"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]";s:51:"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]";s:38:"([0-9]{4})/comment-page-([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&cpage=$matches[2]";s:27:".?.+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:".?.+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:33:".?.+?/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:16:"(.?.+?)/embed/?$";s:41:"index.php?pagename=$matches[1]&embed=true";s:20:"(.?.+?)/trackback/?$";s:35:"index.php?pagename=$matches[1]&tb=1";s:40:"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:35:"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:28:"(.?.+?)/page/?([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&paged=$matches[2]";s:35:"(.?.+?)/comment-page-([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&cpage=$matches[2]";s:24:"(.?.+?)(?:/([0-9]+))?/?$";s:47:"index.php?pagename=$matches[1]&page=$matches[2]";}', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:4:{i:0;s:53:"child-theme-configurator/child-theme-configurator.php";i:1;s:31:"elementor-pro/elementor-pro.php";i:2;s:23:"elementor/elementor.php";i:3;s:35:"litespeed-cache/litespeed-cache.php";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(36, 'comment_max_links', '2', 'yes'),
(37, 'gmt_offset', '0', 'yes'),
(38, 'default_email_category', '1', 'yes'),
(39, 'recently_edited', '', 'no'),
(40, 'template', 'hello-elementor', 'yes'),
(41, 'stylesheet', 'hello-elementor', 'yes'),
(42, 'comment_registration', '0', 'yes'),
(43, 'html_type', 'text/html', 'yes'),
(44, 'use_trackback', '0', 'yes'),
(45, 'default_role', 'subscriber', 'yes'),
(46, 'db_version', '49752', 'yes'),
(47, 'uploads_use_yearmonth_folders', '1', 'yes'),
(48, 'upload_path', '', 'yes'),
(49, 'blog_public', '1', 'yes'),
(50, 'default_link_category', '2', 'yes'),
(51, 'show_on_front', 'page', 'yes'),
(52, 'tag_base', '', 'yes'),
(53, 'show_avatars', '1', 'yes'),
(54, 'avatar_rating', 'G', 'yes'),
(55, 'upload_url_path', '', 'yes'),
(56, 'thumbnail_size_w', '150', 'yes'),
(57, 'thumbnail_size_h', '150', 'yes'),
(58, 'thumbnail_crop', '1', 'yes'),
(59, 'medium_size_w', '300', 'yes'),
(60, 'medium_size_h', '300', 'yes'),
(61, 'avatar_default', 'mystery', 'yes'),
(62, 'large_size_w', '1024', 'yes'),
(63, 'large_size_h', '1024', 'yes'),
(64, 'image_default_link_type', 'none', 'yes'),
(65, 'image_default_size', '', 'yes'),
(66, 'image_default_align', '', 'yes'),
(67, 'close_comments_for_old_posts', '0', 'yes'),
(68, 'close_comments_days_old', '14', 'yes'),
(69, 'thread_comments', '1', 'yes'),
(70, 'thread_comments_depth', '5', 'yes'),
(71, 'page_comments', '0', 'yes'),
(72, 'comments_per_page', '50', 'yes'),
(73, 'default_comments_page', 'newest', 'yes'),
(74, 'comment_order', 'asc', 'yes'),
(75, 'sticky_posts', 'a:0:{}', 'yes'),
(76, 'widget_categories', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(77, 'widget_text', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(78, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(79, 'uninstall_plugins', 'a:3:{s:35:"litespeed-cache/litespeed-cache.php";s:47:"LiteSpeed\\Activation::uninstall_litespeed_cache";s:23:"elementor/elementor.php";a:2:{i:0;s:21:"Elementor\\Maintenance";i:1;s:9:"uninstall";}s:53:"child-theme-configurator/child-theme-configurator.php";s:22:"chld_thm_cfg_uninstall";}', 'no'),
(80, 'timezone_string', '', 'yes'),
(81, 'page_for_posts', '0', 'yes'),
(82, 'page_on_front', '12', 'yes'),
(83, 'default_post_format', '0', 'yes'),
(84, 'link_manager_enabled', '0', 'yes'),
(85, 'finished_splitting_shared_terms', '1', 'yes'),
(86, 'site_icon', '0', 'yes'),
(87, 'medium_large_size_w', '768', 'yes'),
(88, 'medium_large_size_h', '0', 'yes'),
(89, 'wp_page_for_privacy_policy', '3', 'yes'),
(90, 'show_comments_cookies_opt_in', '1', 'yes'),
(91, 'admin_email_lifespan', '1651397470', 'yes'),
(92, 'disallowed_keys', '', 'no'),
(93, 'comment_previously_approved', '1', 'yes'),
(94, 'auto_plugin_theme_update_emails', 'a:0:{}', 'no'),
(95, 'auto_update_core_dev', 'enabled', 'yes'),
(96, 'auto_update_core_minor', 'enabled', 'yes'),
(97, 'auto_update_core_major', 'enabled', 'yes'),
(98, 'wp_force_deactivated_plugins', 'a:0:{}', 'yes'),
(99, 'initial_db_version', '49752', 'yes'),
(100, 'wpui_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:61:{s:13:"switch_themes";b:1;s:11:"edit_themes";b:1;s:16:"activate_plugins";b:1;s:12:"edit_plugins";b:1;s:10:"edit_users";b:1;s:10:"edit_files";b:1;s:14:"manage_options";b:1;s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:6:"import";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:8:"level_10";b:1;s:7:"level_9";b:1;s:7:"level_8";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;s:12:"delete_users";b:1;s:12:"create_users";b:1;s:17:"unfiltered_upload";b:1;s:14:"edit_dashboard";b:1;s:14:"update_plugins";b:1;s:14:"delete_plugins";b:1;s:15:"install_plugins";b:1;s:13:"update_themes";b:1;s:14:"install_themes";b:1;s:11:"update_core";b:1;s:10:"list_users";b:1;s:12:"remove_users";b:1;s:13:"promote_users";b:1;s:18:"edit_theme_options";b:1;s:13:"delete_themes";b:1;s:6:"export";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:34:{s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:10:{s:12:"upload_files";b:1;s:10:"edit_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:4:"read";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:22:"delete_published_posts";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:5:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:2:{s:4:"read";b:1;s:7:"level_0";b:1;}}}', 'yes'),
(101, 'fresh_site', '0', 'yes'),
(102, 'widget_block', 'a:6:{i:2;a:1:{s:7:"content";s:19:"<!-- wp:search /-->";}i:3;a:1:{s:7:"content";s:154:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->";}i:4;a:1:{s:7:"content";s:227:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {"displayAvatar":false,"displayDate":false,"displayExcerpt":false} /--></div><!-- /wp:group -->";}i:5;a:1:{s:7:"content";s:146:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->";}i:6;a:1:{s:7:"content";s:150:"<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->";}s:12:"_multiwidget";i:1;}', 'yes'),
(103, 'sidebars_widgets', 'a: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'),
(104, 'cron', 'a:7:{i:1636407263;a:2:{s:27:"litespeed_task_imgoptm_pull";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:16:"litespeed_filter";s:4:"args";a:0:{}s:8:"interval";i:60;}}s:19:"litespeed_task_lqip";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:16:"litespeed_filter";s:4:"args";a:0:{}s:8:"interval";i:60;}}}i:1636410670;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:1636450270;a:5:{s:18:"wp_https_detection";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:16:"wp_version_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:17:"wp_update_plugins";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:16:"wp_update_themes";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:32:"recovery_mode_clean_expired_keys";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1636450343;a:3:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}s:25:"delete_expired_transients";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}s:30:"wp_scheduled_auto_draft_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1636450421;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:1636536670;a:1:{s:30:"wp_site_health_scheduled_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"weekly";s:4:"args";a:0:{}s:8:"interval";i:604800;}}}s:7:"version";i:2;}', 'yes'),
(105, 'widget_pages', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(106, 'widget_calendar', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(107, 'widget_archives', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(108, 'widget_media_audio', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(109, 'widget_media_image', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(110, 'widget_media_gallery', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(111, 'widget_media_video', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(112, 'widget_meta', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(113, 'widget_search', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(114, 'widget_tag_cloud', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(115, 'widget_nav_menu', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(116, 'widget_custom_html', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(118, 'recovery_keys', 'a:0:{}', 'yes'),
(119, 'theme_mods_twentytwentyone', 'a:2:{s:18:"custom_css_post_id";i:-1;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1635845703;s:4:"data";a:3:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:3:{i:0;s:7:"block-2";i:1;s:7:"block-3";i:2;s:7:"block-4";}s:9:"sidebar-2";a:2:{i:0;s:7:"block-5";i:1;s:7:"block-6";}}}}', 'yes'),
(120, 'https_detection_errors', 'a:0:{}', 'yes'),
(128, 'WPLANG', 'es_ES', 'yes'),
(133, 'litespeed.cloud._summary', '{"curr_request.ver":0,"last_request.ver":1635845542,"news.utime":1635845553,"curr_request.news":0,"last_request.news":1635845553}', 'yes'),
(134, 'litespeed.conf._version', '4.4.3', 'yes'),
(135, 'litespeed.conf.hash', 'MAwuRxKnMBe1uurgRKlAz8fbgA8quSWT', 'yes'),
(136, 'litespeed.conf.auto_upgrade', '', 'yes'),
(137, 'litespeed.conf.api_key', '', 'yes'),
(138, 'litespeed.conf.server_ip', '', 'yes'),
(139, 'litespeed.conf.guest', '', 'yes'),
(140, 'litespeed.conf.guest_optm', '', 'yes'),
(141, 'litespeed.conf.news', '1', 'yes'),
(142, 'litespeed.conf.guest_uas', '["Lighthouse","GTmetrix","Google","Pingdom","bot","PTST","HeadlessChrome"]', 'yes'),
(143, 'litespeed.conf.guest_ips', '["208.70.247.157","172.255.48.130","172.255.48.131","172.255.48.132","172.255.48.133","172.255.48.134","172.255.48.135","172.255.48.136","172.255.48.137","172.255.48.138","172.255.48.139","172.255.48.140","172.255.48.141","172.255.48.142","172.255.48.143","172.255.48.144","172.255.48.145","172.255.48.146","172.255.48.147","52.229.122.240","104.214.72.101","13.66.7.11","13.85.24.83","13.85.24.90","13.85.82.26","40.74.242.253","40.74.243.13","40.74.243.176","104.214.48.247","157.55.189.189","104.214.110.135","70.37.83.240","65.52.36.250","13.78.216.56","52.162.212.163","23.96.34.105","65.52.113.236","172.255.61.34","172.255.61.35","172.255.61.36","172.255.61.37","172.255.61.38","172.255.61.39","172.255.61.40","104.41.2.19","191.235.98.164","191.235.99.221","191.232.194.51","52.237.235.185","52.237.250.73","52.237.236.145","104.211.143.8","104.211.165.53","52.172.14.87","40.83.89.214","52.175.57.81","20.188.63.151","20.52.36.49","52.246.165.153","51.144.102.233","13.76.97.224","102.133.169.66","52.231.199.170","13.53.162.7","40.123.218.94"]', 'yes'),
(144, 'litespeed.conf.cache', '1', 'yes'),
(145, 'litespeed.conf.cache-priv', '1', 'yes'),
(146, 'litespeed.conf.cache-commenter', '1', 'yes'),
(147, 'litespeed.conf.cache-rest', '1', 'yes'),
(148, 'litespeed.conf.cache-page_login', '1', 'yes'),
(149, 'litespeed.conf.cache-favicon', '1', 'yes'),
(150, 'litespeed.conf.cache-resources', '1', 'yes'),
(151, 'litespeed.conf.cache-mobile', '', 'yes'),
(152, 'litespeed.conf.cache-mobile_rules', '["Mobile","Android","Silk\\/","Kindle","BlackBerry","Opera Mini","Opera Mobi"]', 'yes'),
(153, 'litespeed.conf.cache-browser', '', 'yes'),
(154, 'litespeed.conf.cache-exc_useragents', '[]', 'yes'),
(155, 'litespeed.conf.cache-exc_cookies', '[]', 'yes'),
(156, 'litespeed.conf.cache-exc_qs', '[]', 'yes'),
(157, 'litespeed.conf.cache-exc_cat', '[]', 'yes'),
(158, 'litespeed.conf.cache-exc_tag', '[]', 'yes'),
(159, 'litespeed.conf.cache-force_uri', '[]', 'yes'),
(160, 'litespeed.conf.cache-force_pub_uri', '[]', 'yes'),
(161, 'litespeed.conf.cache-priv_uri', '[]', 'yes'),
(162, 'litespeed.conf.cache-exc', '[]', 'yes'),
(163, 'litespeed.conf.cache-exc_roles', '[]', 'yes'),
(164, 'litespeed.conf.cache-drop_qs', '["fbclid","gclid","utm*","_ga"]', 'yes'),
(165, 'litespeed.conf.cache-ttl_pub', '604800', 'yes'),
(166, 'litespeed.conf.cache-ttl_priv', '1800', 'yes'),
(167, 'litespeed.conf.cache-ttl_frontpage', '604800', 'yes'),
(168, 'litespeed.conf.cache-ttl_feed', '604800', 'yes'),
(169, 'litespeed.conf.cache-ttl_rest', '604800', 'yes'),
(170, 'litespeed.conf.cache-ttl_browser', '31557600', 'yes'),
(171, 'litespeed.conf.cache-ttl_status', '["403 3600","404 3600","500 3600"]', 'yes'),
(172, 'litespeed.conf.cache-login_cookie', '', 'yes'),
(173, 'litespeed.conf.cache-vary_group', '[]', 'yes'),
(174, 'litespeed.conf.purge-upgrade', '1', 'yes'),
(175, 'litespeed.conf.purge-stale', '', 'yes'),
(176, 'litespeed.conf.purge-post_all', '', 'yes'),
(177, 'litespeed.conf.purge-post_f', '1', 'yes'),
(178, 'litespeed.conf.purge-post_h', '1', 'yes'),
(179, 'litespeed.conf.purge-post_p', '1', 'yes'),
(180, 'litespeed.conf.purge-post_pwrp', '1', 'yes'),
(181, 'litespeed.conf.purge-post_a', '1', 'yes'),
(182, 'litespeed.conf.purge-post_y', '', 'yes'),
(183, 'litespeed.conf.purge-post_m', '1', 'yes'),
(184, 'litespeed.conf.purge-post_d', '', 'yes'),
(185, 'litespeed.conf.purge-post_t', '1', 'yes'),
(186, 'litespeed.conf.purge-post_pt', '1', 'yes'),
(187, 'litespeed.conf.purge-timed_urls', '[]', 'yes'),
(188, 'litespeed.conf.purge-timed_urls_time', '', 'yes'),
(189, 'litespeed.conf.purge-hook_all', '["switch_theme","wp_create_nav_menu","wp_update_nav_menu","wp_delete_nav_menu","create_term","edit_terms","delete_term","add_link","edit_link","delete_link"]', 'yes'),
(190, 'litespeed.conf.esi', '', 'yes'),
(191, 'litespeed.conf.esi-cache_admbar', '1', 'yes'),
(192, 'litespeed.conf.esi-cache_commform', '1', 'yes'),
(193, 'litespeed.conf.esi-nonce', '["stats_nonce","subscribe_nonce"]', 'yes'),
(194, 'litespeed.conf.util-instant_click', '', 'yes'),
(195, 'litespeed.conf.util-no_https_vary', '', 'yes'),
(196, 'litespeed.conf.debug-disable_all', '', 'yes'),
(197, 'litespeed.conf.debug', '', 'yes'),
(198, 'litespeed.conf.debug-ips', '["127.0.0.1"]', 'yes'),
(199, 'litespeed.conf.debug-level', '', 'yes'),
(200, 'litespeed.conf.debug-filesize', '3', 'yes'),
(201, 'litespeed.conf.debug-cookie', '', 'yes'),
(202, 'litespeed.conf.debug-collaps_qs', '', 'yes'),
(203, 'litespeed.conf.debug-inc', '[]', 'yes'),
(204, 'litespeed.conf.debug-exc', '[]', 'yes'),
(205, 'litespeed.conf.db_optm-revisions_max', '0', 'yes'),
(206, 'litespeed.conf.db_optm-revisions_age', '0', 'yes'),
(207, 'litespeed.conf.optm-css_min', '', 'yes'),
(208, 'litespeed.conf.optm-css_comb', '', 'yes'),
(209, 'litespeed.conf.optm-css_comb_ext_inl', '1', 'yes'),
(210, 'litespeed.conf.optm-ucss', '', 'yes'),
(211, 'litespeed.conf.optm-ucss_inline', '', 'yes'),
(212, 'litespeed.conf.optm-ucss_whitelist', '[]', 'yes'),
(213, 'litespeed.conf.optm-ucss_exc', '[]', 'yes'),
(214, 'litespeed.conf.optm-css_exc', '[]', 'yes'),
(215, 'litespeed.conf.optm-js_min', '', 'yes'),
(216, 'litespeed.conf.optm-js_comb', '', 'yes'),
(217, 'litespeed.conf.optm-js_comb_ext_inl', '1', 'yes'),
(218, 'litespeed.conf.optm-js_exc', '["jquery.js","jquery.min.js"]', 'yes'),
(219, 'litespeed.conf.optm-html_min', '', 'yes'),
(220, 'litespeed.conf.optm-html_lazy', '[]', 'yes'),
(221, 'litespeed.conf.optm-qs_rm', '', 'yes'),
(222, 'litespeed.conf.optm-ggfonts_rm', '', 'yes'),
(223, 'litespeed.conf.optm-css_async', '', 'yes'),
(224, 'litespeed.conf.optm-ccss_per_url', '', 'yes'),
(225, 'litespeed.conf.optm-ccss_sep_posttype', '["page"]', 'yes'),
(226, 'litespeed.conf.optm-ccss_sep_uri', '[]', 'yes'),
(227, 'litespeed.conf.optm-css_async_inline', '1', 'yes'),
(228, 'litespeed.conf.optm-css_font_display', '', 'yes'),
(229, 'litespeed.conf.optm-js_defer', '', 'yes'),
(230, 'litespeed.conf.optm-emoji_rm', '', 'yes'),
(231, 'litespeed.conf.optm-noscript_rm', '', 'yes'),
(232, 'litespeed.conf.optm-ggfonts_async', '', 'yes'),
(233, 'litespeed.conf.optm-exc_roles', '[]', 'yes'),
(234, 'litespeed.conf.optm-ccss_con', '', 'yes'),
(235, 'litespeed.conf.optm-js_defer_exc', '["jquery.js","jquery.min.js","gtm.js","analytics.js"]', 'yes'),
(236, 'litespeed.conf.optm-gm_js_exc', '[]', 'yes'),
(237, 'litespeed.conf.optm-dns_prefetch', '[]', 'yes'),
(238, 'litespeed.conf.optm-dns_prefetch_ctrl', '', 'yes'),
(239, 'litespeed.conf.optm-exc', '[]', 'yes'),
(240, 'litespeed.conf.optm-guest_only', '1', 'yes'),
(241, 'litespeed.conf.object', '', 'yes'),
(242, 'litespeed.conf.object-kind', '', 'yes'),
(243, 'litespeed.conf.object-host', 'localhost', 'yes'),
(244, 'litespeed.conf.object-port', '11211', 'yes'),
(245, 'litespeed.conf.object-life', '360', 'yes'),
(246, 'litespeed.conf.object-persistent', '1', 'yes'),
(247, 'litespeed.conf.object-admin', '1', 'yes'),
(248, 'litespeed.conf.object-transients', '1', 'yes'),
(249, 'litespeed.conf.object-db_id', '0', 'yes'),
(250, 'litespeed.conf.object-user', '', 'yes'),
(251, 'litespeed.conf.object-pswd', '', 'yes'),
(252, 'litespeed.conf.object-global_groups', '["users","userlogins","useremail","userslugs","usermeta","user_meta","site-transient","site-options","site-lookup","site-details","blog-lookup","blog-details","blog-id-cache","rss","global-posts","global-cache-test"]', 'yes'),
(253, 'litespeed.conf.object-non_persistent_groups', '["comment","counts","plugins","wc_session_id"]', 'yes'),
(254, 'litespeed.conf.discuss-avatar_cache', '', 'yes'),
(255, 'litespeed.conf.discuss-avatar_cron', '', 'yes'),
(256, 'litespeed.conf.discuss-avatar_cache_ttl', '604800', 'yes'),
(257, 'litespeed.conf.media-lazy', '', 'yes'),
(258, 'litespeed.conf.media-lazy_placeholder', '', 'yes'),
(259, 'litespeed.conf.media-placeholder_resp', '', 'yes'),
(260, 'litespeed.conf.media-placeholder_resp_color', '#cfd4db', 'yes'),
(261, 'litespeed.conf.media-placeholder_resp_svg', '<svg xmlns="http://www.w3.org/2000/svg" width="{width}" height="{height}" viewBox="0 0 {width} {height}"><rect width="100%" height="100%" style="fill:{color};fill-opacity: 0.1;"/></svg>', 'yes'),
(262, 'litespeed.conf.media-lqip', '', 'yes'),
(263, 'litespeed.conf.media-lqip_qual', '4', 'yes'),
(264, 'litespeed.conf.media-lqip_min_w', '150', 'yes'),
(265, 'litespeed.conf.media-lqip_min_h', '150', 'yes'),
(266, 'litespeed.conf.media-placeholder_resp_async', '1', 'yes'),
(267, 'litespeed.conf.media-iframe_lazy', '', 'yes'),
(268, 'litespeed.conf.media-add_missing_sizes', '', 'yes'),
(269, 'litespeed.conf.media-lazyjs_inline', '', 'yes'),
(270, 'litespeed.conf.media-lazy_exc', '[]', 'yes'),
(271, 'litespeed.conf.media-lazy_cls_exc', '["wmu-preview-img"]', 'yes'),
(272, 'litespeed.conf.media-lazy_parent_cls_exc', '[]', 'yes'),
(273, 'litespeed.conf.media-iframe_lazy_cls_exc', '[]', 'yes'),
(274, 'litespeed.conf.media-iframe_lazy_parent_cls_exc', '[]', 'yes'),
(275, 'litespeed.conf.media-lazy_uri_exc', '[]', 'yes'),
(276, 'litespeed.conf.media-lqip_exc', '[]', 'yes'),
(277, 'litespeed.conf.img_optm-auto', '', 'yes'),
(278, 'litespeed.conf.img_optm-cron', '1', 'yes'),
(279, 'litespeed.conf.img_optm-ori', '1', 'yes'),
(280, 'litespeed.conf.img_optm-rm_bkup', '', 'yes'),
(281, 'litespeed.conf.img_optm-webp', '1', 'yes'),
(282, 'litespeed.conf.img_optm-lossless', '', 'yes'),
(283, 'litespeed.conf.img_optm-exif', '1', 'yes'),
(284, 'litespeed.conf.img_optm-webp_replace', '', 'yes'),
(285, 'litespeed.conf.img_optm-webp_attr', '["img.src","div.data-thumb","img.data-src","div.data-large_image","img.retina_logo_url","div.data-parallax-image","video.poster"]', 'yes'),
(286, 'litespeed.conf.img_optm-webp_replace_srcset', '', 'yes'),
(287, 'litespeed.conf.img_optm-jpg_quality', '82', 'yes'),
(288, 'litespeed.conf.crawler', '', 'yes'),
(289, 'litespeed.conf.crawler-usleep', '500', 'yes'),
(290, 'litespeed.conf.crawler-run_duration', '400', 'yes'),
(291, 'litespeed.conf.crawler-run_interval', '600', 'yes'),
(292, 'litespeed.conf.crawler-crawl_interval', '302400', 'yes'),
(293, 'litespeed.conf.crawler-threads', '3', 'yes'),
(294, 'litespeed.conf.crawler-timeout', '30', 'yes'),
(295, 'litespeed.conf.crawler-load_limit', '1', 'yes'),
(296, 'litespeed.conf.crawler-sitemap', '', 'yes'),
(297, 'litespeed.conf.crawler-drop_domain', '1', 'yes'),
(298, 'litespeed.conf.crawler-map_timeout', '120', 'yes'),
(299, 'litespeed.conf.crawler-roles', '[]', 'yes'),
(300, 'litespeed.conf.crawler-cookies', '[]', 'yes'),
(301, 'litespeed.conf.misc-heartbeat_front', '', 'yes'),
(302, 'litespeed.conf.misc-heartbeat_front_ttl', '60', 'yes'),
(303, 'litespeed.conf.misc-heartbeat_back', '', 'yes'),
(304, 'litespeed.conf.misc-heartbeat_back_ttl', '60', 'yes'),
(305, 'litespeed.conf.misc-heartbeat_editor', '', 'yes'),
(306, 'litespeed.conf.misc-heartbeat_editor_ttl', '15', 'yes'),
(307, 'litespeed.conf.cdn', '', 'yes'),
(308, 'litespeed.conf.cdn-ori', '[]', 'yes'),
(309, 'litespeed.conf.cdn-ori_dir', '["wp-content","wp-includes"]', 'yes'),
(310, 'litespeed.conf.cdn-exc', '[]', 'yes'),
(311, 'litespeed.conf.cdn-quic', '', 'yes'),
(312, 'litespeed.conf.cdn-cloudflare', '', 'yes'),
(313, 'litespeed.conf.cdn-cloudflare_email', '', 'yes'),
(314, 'litespeed.conf.cdn-cloudflare_key', '', 'yes'),
(315, 'litespeed.conf.cdn-cloudflare_name', '', 'yes'),
(316, 'litespeed.conf.cdn-cloudflare_zone', '', 'yes'),
(317, 'litespeed.conf.cdn-mapping', '[{"url":"","inc_img":"1","inc_css":"1","inc_js":"1","filetype":[".aac",".css",".eot",".gif",".jpeg",".jpg",".js",".less",".mp3",".mp4",".ogg",".otf",".pdf",".png",".svg",".ttf",".webp",".woff",".woff2"]}]', 'yes'),
(318, 'litespeed.conf.cdn-attr', '[".src",".data-src",".href",".poster","source.srcset"]', 'yes'),
(320, '_site_transient_timeout_browser_9ceebc4ad83ababb94d4029b4dca4e66', '1636450343', 'no'),
(321, '_site_transient_browser_9ceebc4ad83ababb94d4029b4dca4e66', 'a:10:{s:4:"name";s:6:"Chrome";s:7:"version";s:12:"95.0.4638.54";s:8:"platform";s:7:"Windows";s:10:"update_url";s:29:"https://www.google.com/chrome";s:7:"img_src";s:43:"http://s.w.org/images/browsers/chrome.png?1";s:11:"img_src_ssl";s:44:"https://s.w.org/images/browsers/chrome.png?1";s:15:"current_version";s:2:"18";s:7:"upgrade";b:0;s:8:"insecure";b:0;s:6:"mobile";b:0;}', 'no'),
(322, '_site_transient_timeout_php_check_d48825f8e9bd4d8f43457d50e9cb3d90', '1636450343', 'no'),
(323, '_site_transient_php_check_d48825f8e9bd4d8f43457d50e9cb3d90', 'a:5:{s:19:"recommended_version";s:3:"7.4";s:15:"minimum_version";s:6:"5.6.20";s:12:"is_supported";b:0;s:9:"is_secure";b:1;s:13:"is_acceptable";b:1;}', 'no'),
(324, 'litespeed.gui._summary', '{"new_version":1636450343,"score":1637055143}', 'yes'),
(332, 'can_compress_scripts', '0', 'no'),
(339, 'recently_activated', 'a:0:{}', 'yes'),
(342, 'litespeed.optimize.timestamp_purge_css', '1635846492', 'yes'),
(347, 'finished_updating_comment_type', '1', 'yes'),
(351, 'elementor_active_kit', '6', 'yes'),
(354, 'elementor_version', '3.3.0', 'yes'),
(355, 'elementor_install_history', 'a:1:{s:5:"3.3.0";i:1635845656;}', 'yes'),
(358, '_elementor_installed_time', '1635845622', 'yes'),
(359, 'elementor_remote_info_library', 'a:3:{s:10:"types_data";a:3:{s:5:"block";a:1:{s:10:"categories";a:22:{i:0;s:8:"404 page";i:1;s:5:"about";i:2;s:7:"archive";i:3;s:14:"call to action";i:4;s:7:"clients";i:5;s:7:"contact";i:6;s:3:"faq";i:7;s:8:"features";i:8;s:6:"footer";i:9;s:6:"header";i:10;s:4:"hero";i:11;s:9:"portfolio";i:12;s:7:"pricing";i:13;s:15:"product archive";i:14;s:8:"services";i:15;s:11:"single page";i:16;s:11:"single post";i:17;s:14:"single product";i:18;s:5:"stats";i:19;s:9:"subscribe";i:20;s:4:"team";i:21;s:12:"testimonials";}}s:5:"popup";a:1:{s:10:"categories";a:6:{i:0;s:10:"bottom bar";i:1;s:7:"classic";i:2;s:6:"fly-in";i:3;s:11:"full screen";i:4;s:9:"hello bar";i:5;s:8:"slide-in";}}s:2:"lp";a:1:{s:10:"categories";a:14:{i:0;s:8:"Business";i:1;s:16:"Coming Soon Page";i:2;s:5:"Ebook";i:3;s:9:"eCommerce";i:4;s:9:"Education";i:5;s:6:"Events";i:6;s:18:"Health and Fitness";i:7;s:14:"Online Service";i:8;s:7:"Product";i:9;s:11:"Real Estate";i:10;s:18:"Social Involvement";i:11;s:14:"Thank You Page";i:12;s:6:"Travel";i:13;s:18:"Under Construction";}}}s:10:"categories";a:22:{i:0;s:8:"404 page";i:1;s:5:"about";i:2;s:7:"archive";i:3;s:14:"call to action";i:4;s:7:"clients";i:5;s:7:"contact";i:6;s:3:"faq";i:7;s:8:"features";i:8;s:6:"footer";i:9;s:6:"header";i:10;s:4:"hero";i:11;s:9:"portfolio";i:12;s:7:"pricing";i:13;s:15:"product archive";i:14;s:8:"services";i:15;s:11:"single page";i:16;s:11:"single post";i:17;s:14:"single product";i:18;s:5:"stats";i:19;s:9:"subscribe";i:20;s:4:"team";i:21;s:12:"testimonials";}s:9:"templates";a:896:{i:0;a:15:{s:2:"id";i:10107;s:5:"title";s:34:"Classic | Promotion | Announcement";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png";s:12:"tmpl_created";i:1547851373;s:6:"author";s:9:"Elementor";s:3:"url";s:127:"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:206;s:11:"trend_index";i:207;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:1;a:15:{s:2:"id";i:14827;s:5:"title";s:39:"Slide-In | Contact | Luxury Real Estate";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png";s:12:"tmpl_created";i:1595323523;s:6:"author";s:9:"Elementor";s:3:"url";s:132:"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:28:"["real estate","realestate"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:559;s:11:"trend_index";i:284;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:2;a:15:{s:2:"id";i:10158;s:5:"title";s:17:"Classic | Contact";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png";s:12:"tmpl_created";i:1547852227;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/popups/classic-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:255;s:11:"trend_index";i:295;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:3;a:15:{s:2:"id";i:10190;s:5:"title";s:30:"Classic | Register | Subscribe";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png";s:12:"tmpl_created";i:1547885703;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:214;s:11:"trend_index";i:151;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:4;a:15:{s:2:"id";i:15075;s:5:"title";s:34:"Slide-In | Menu | Flooring Company";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png";s:12:"tmpl_created";i:1597739605;s:6:"author";s:9:"Elementor";s:3:"url";s:127:"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:39:"["Flooring company","Flooring website"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:383;s:11:"trend_index";i:162;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:5;a:15:{s:2:"id";i:15062;s:5:"title";s:35:"Fly-In | Sign up | Flooring Company";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png";s:12:"tmpl_created";i:1597739629;s:6:"author";s:9:"Elementor";s:3:"url";s:128:"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:39:"["Flooring company","Flooring website"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:625;s:11:"trend_index";i:309;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:6;a:15:{s:2:"id";i:10256;s:5:"title";s:20:"Classic | Sale | Pop";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png";s:12:"tmpl_created";i:1547888909;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/popups/classic-sale-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:458;s:11:"trend_index";i:597;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:7;a:15:{s:2:"id";i:10267;s:5:"title";s:29:"Classic | Contact | Christmas";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png";s:12:"tmpl_created";i:1547889047;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:281;s:11:"trend_index";i:233;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:8;a:15:{s:2:"id";i:10307;s:5:"title";s:43:"Fly In | Promotion | Christmas | Teddy Bear";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png";s:12:"tmpl_created";i:1547893266;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:641;s:11:"trend_index";i:689;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:9;a:15:{s:2:"id";i:10318;s:5:"title";s:27:"Classic | Contact | Bicycle";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png";s:12:"tmpl_created";i:1547893367;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/popups/classic-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:327;s:11:"trend_index";i:326;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:10;a:15:{s:2:"id";i:10339;s:5:"title";s:22:"Fly In | Contact | Spa";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png";s:12:"tmpl_created";i:1547893603;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:390;s:11:"trend_index";i:393;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:11;a:15:{s:2:"id";i:10352;s:5:"title";s:23:"Fly In | Contact | Wine";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png";s:12:"tmpl_created";i:1547915335;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/popups/fly-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:445;s:11:"trend_index";i:525;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:12;a:15:{s:2:"id";i:10372;s:5:"title";s:29:"Fly In | Register | Subscribe";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png";s:12:"tmpl_created";i:1547915554;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:638;s:11:"trend_index";i:636;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:13;a:15:{s:2:"id";i:10382;s:5:"title";s:35:"Bottom Bar | Announcement | Cookies";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png";s:12:"tmpl_created";i:1547916616;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:10:"bottom bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:242;s:11:"trend_index";i:258;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:14;a:15:{s:2:"id";i:15259;s:5:"title";s:31:"Hello Bar | Menu | Psychologist";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png";s:12:"tmpl_created";i:1600170209;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:9:"hello bar";s:4:"tags";s:34:"["Psychologist","Psychotherapist"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:739;s:11:"trend_index";i:583;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:15;a:15:{s:2:"id";i:15272;s:5:"title";s:32:"Classic | Contact | Psychologist";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png";s:12:"tmpl_created";i:1600170487;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:34:"["Psychologist","Psychotherapist"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:578;s:11:"trend_index";i:312;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:16;a:15:{s:2:"id";i:15414;s:5:"title";s:32:"Classic | Contact | Dance Studio";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg";s:12:"tmpl_created";i:1603180596;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:16:"["dance studio"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:762;s:11:"trend_index";i:650;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:17;a:15:{s:2:"id";i:10434;s:5:"title";s:27:"Classic | Sale | Headphones";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png";s:12:"tmpl_created";i:1547961950;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/popups/classic-sale-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:359;s:11:"trend_index";i:353;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:18;a:15:{s:2:"id";i:10444;s:5:"title";s:17:"Classic | Contact";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png";s:12:"tmpl_created";i:1547962029;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/popups/classic-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:385;s:11:"trend_index";i:298;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:19;a:15:{s:2:"id";i:10467;s:5:"title";s:27:"Bottom Bar | Contact | Lego";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png";s:12:"tmpl_created";i:1547962277;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:10:"bottom bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:722;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:20;a:15:{s:2:"id";i:10487;s:5:"title";s:18:"Slide In | Contact";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png";s:12:"tmpl_created";i:1547964527;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:554;s:11:"trend_index";i:618;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:21;a:15:{s:2:"id";i:10498;s:5:"title";s:14:"Classic | Sale";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png";s:12:"tmpl_created";i:1547964616;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/popups/classic-sale-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:421;s:11:"trend_index";i:382;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:22;a:15:{s:2:"id";i:10519;s:5:"title";s:27:"Hello Bar | Promotion | App";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png";s:12:"tmpl_created";i:1547964801;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:9:"hello bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:585;s:11:"trend_index";i:629;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:23;a:15:{s:2:"id";i:15580;s:5:"title";s:31:"Fullscreen | Menu | Travel Blog";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg";s:12:"tmpl_created";i:1606215358;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:17:"["Blog","Travel"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:673;s:11:"trend_index";i:348;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:24;a:15:{s:2:"id";i:15570;s:5:"title";s:33:"Classic | Subscribe | Travel Blog";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg";s:12:"tmpl_created";i:1606215555;s:6:"author";s:9:"Elementor";s:3:"url";s:126:"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:17:"["Blog","Travel"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:709;s:11:"trend_index";i:459;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:25;a:15:{s:2:"id";i:10569;s:5:"title";s:15:"Slide In | Sale";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png";s:12:"tmpl_created";i:1547967812;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/popups/slide-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:529;s:11:"trend_index";i:485;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:26;a:15:{s:2:"id";i:10590;s:5:"title";s:19:"Full Screen | Login";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png";s:12:"tmpl_created";i:1547967978;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/popups/classic-login-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:466;s:11:"trend_index";i:356;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:27;a:15:{s:2:"id";i:10600;s:5:"title";s:18:"Slide In | Contact";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png";s:12:"tmpl_created";i:1547968080;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:483;s:11:"trend_index";i:494;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:28;a:15:{s:2:"id";i:10622;s:5:"title";s:34:"Full Screen | Contact | Headphones";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png";s:12:"tmpl_created";i:1547969678;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:543;s:11:"trend_index";i:456;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:29;a:15:{s:2:"id";i:10633;s:5:"title";s:23:"Slide In | Login | Lego";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png";s:12:"tmpl_created";i:1547969858;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/popups/slide-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:675;s:11:"trend_index";i:722;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:30;a:15:{s:2:"id";i:10644;s:5:"title";s:26:"Fly In | Contact | Webinar";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png";s:12:"tmpl_created";i:1547970814;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:484;s:11:"trend_index";i:440;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:31;a:15:{s:2:"id";i:10654;s:5:"title";s:31:"Full Screen | Login | Christmas";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png";s:12:"tmpl_created";i:1547970917;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:658;s:11:"trend_index";i:676;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:32;a:15:{s:2:"id";i:10664;s:5:"title";s:34:"Slide In | Contact | Gym | Fitness";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png";s:12:"tmpl_created";i:1547973928;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:552;s:11:"trend_index";i:384;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:33;a:15:{s:2:"id";i:10675;s:5:"title";s:35:"Full Screen | Login | Gym | Fitness";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png";s:12:"tmpl_created";i:1547974110;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/popups/full-screen-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:519;s:11:"trend_index";i:477;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:34;a:15:{s:2:"id";i:9719;s:5:"title";s:30:"Classic | Subscribe | Register";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png";s:12:"tmpl_created";i:1547976107;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:398;s:11:"trend_index";i:282;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:35;a:15:{s:2:"id";i:10137;s:5:"title";s:34:"Full Screen | Contact | Restaurant";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png";s:12:"tmpl_created";i:1547976342;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/popups/full-screen-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:570;s:11:"trend_index";i:589;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:36;a:15:{s:2:"id";i:10244;s:5:"title";s:17:"Bottom Bar | Sale";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png";s:12:"tmpl_created";i:1547976402;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:10:"bottom bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:623;s:11:"trend_index";i:660;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:37;a:15:{s:2:"id";i:10127;s:5:"title";s:35:"Fly In | Announcement | Maintenance";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png";s:12:"tmpl_created";i:1547984061;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:700;s:11:"trend_index";i:738;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:38;a:15:{s:2:"id";i:10776;s:5:"title";s:33:"Fly In | Contact | Social | Share";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png";s:12:"tmpl_created";i:1548047055;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:694;s:11:"trend_index";i:694;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:39;a:15:{s:2:"id";i:10785;s:5:"title";s:33:"Fly In | Contact | Social | Share";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png";s:12:"tmpl_created";i:1548047593;s:6:"author";s:9:"Elementor";s:3:"url";s:126:"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:468;s:11:"trend_index";i:442;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:40;a:15:{s:2:"id";i:10794;s:5:"title";s:34:"Classic | Contact | Social | Share";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png";s:12:"tmpl_created";i:1548067619;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:430;s:11:"trend_index";i:475;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:41;a:15:{s:2:"id";i:10871;s:5:"title";s:20:"Bottom Bar | Contact";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png";s:12:"tmpl_created";i:1548074396;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:10:"bottom bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:706;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:42;a:15:{s:2:"id";i:10936;s:5:"title";s:25:"Full Screen | Toggle Menu";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png";s:12:"tmpl_created";i:1548874587;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:478;s:11:"trend_index";i:572;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:43;a:15:{s:2:"id";i:10964;s:5:"title";s:59:"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png";s:12:"tmpl_created";i:1550039106;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:598;s:11:"trend_index";i:664;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:44;a:15:{s:2:"id";i:10992;s:5:"title";s:59:"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png";s:12:"tmpl_created";i:1550072007;s:6:"author";s:9:"Elementor";s:3:"url";s:141:"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:668;s:11:"trend_index";i:668;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:45;a:15:{s:2:"id";i:11005;s:5:"title";s:50:"Classic | Promotion | Love | Valentine&#8217;s Day";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png";s:12:"tmpl_created";i:1550073303;s:6:"author";s:9:"Elementor";s:3:"url";s:134:"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:680;s:11:"trend_index";i:615;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:46;a:15:{s:2:"id";i:16553;s:5:"title";s:31:"Fly-In | Contact | Beauty Salon";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg";s:12:"tmpl_created";i:1608622602;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:23:"["Beauty salon","hair"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:691;s:11:"trend_index";i:428;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:47;a:15:{s:2:"id";i:11468;s:5:"title";s:20:"Classic | Sale | Gym";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png";s:12:"tmpl_created";i:1567393182;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/popups/classic-sale-gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:696;s:11:"trend_index";i:740;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:48;a:15:{s:2:"id";i:11822;s:5:"title";s:30:"Full Screen | Menu | Portfolio";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png";s:12:"tmpl_created";i:1569429896;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:654;s:11:"trend_index";i:626;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:49;a:15:{s:2:"id";i:11839;s:5:"title";s:9:"Portfolio";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png";s:12:"tmpl_created";i:1569430015;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:43:"["creative portfolio","header","portfolio"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:189;s:11:"trend_index";i:20;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:50;a:15:{s:2:"id";i:12229;s:5:"title";s:33:"Slide In | Law Firm | Information";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2019/11/popup.png";s:12:"tmpl_created";i:1572847842;s:6:"author";s:9:"Elementor";s:3:"url";s:126:"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:18:"["Law","Law Firm"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:547;s:11:"trend_index";i:413;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:51;a:15:{s:2:"id";i:12550;s:5:"title";s:32:"Fly-in | Sale | Travel and Tours";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png";s:12:"tmpl_created";i:1575960263;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:18:"["Tours","Travel"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:754;s:11:"trend_index";i:791;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:52;a:15:{s:2:"id";i:12540;s:5:"title";s:33:"Classic | Menu | Travel and tours";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png";s:12:"tmpl_created";i:1575960267;s:6:"author";s:9:"Elementor";s:3:"url";s:126:"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:18:"["Tours","Travel"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:690;s:11:"trend_index";i:714;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:53;a:15:{s:2:"id";i:18839;s:5:"title";s:27:"Hello Bar | CTA | eCommerce";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png";s:12:"tmpl_created";i:1621870603;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:9:"hello bar";s:4:"tags";s:41:"["Ecommerce","online shop","Sale","Shop"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:54;a:15:{s:2:"id";i:20208;s:5:"title";s:49:"Alternative Medicine Acupuncture &#8211; Business";s:9:"thumbnail";s:112:"https://library.elementor.com/wp-content/uploads/2021/10/Alternative-Medicine-Acupuncture-Business-250x280-1.jpg";s:12:"tmpl_created";i:1633880557;s:6:"author";s:9:"Elementor";s:3:"url";s:134:"https://library.elementor.com/lp/alternative-medicine-acupuncture-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:47:"["Health","Landing Pages","medical","Services"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:55;a:15:{s:2:"id";i:20233;s:5:"title";s:32:"Art Magazine &#8211; Coming Soon";s:9:"thumbnail";s:95:"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg";s:12:"tmpl_created";i:1633881371;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:16:"Coming Soon Page";s:4:"tags";s:48:"["Art","Coming Soon","Landing Pages","Magazine"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:56;a:15:{s:2:"id";i:20254;s:5:"title";s:41:"Digital Marketing Agency &#8211; Business";s:9:"thumbnail";s:95:"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg";s:12:"tmpl_created";i:1633882427;s:6:"author";s:9:"Elementor";s:3:"url";s:126:"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:65:"["Agency","Business","Digital Agency","Landing Pages","Services"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:57;a:15:{s:2:"id";i:12736;s:5:"title";s:41:"Slide In | Contact Us | Magazine and Blog";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png";s:12:"tmpl_created";i:1579060978;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:19:"["Blog","Magazine"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:734;s:11:"trend_index";i:686;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:58;a:15:{s:2:"id";i:20299;s:5:"title";s:51:"Interior Design Consultation &#8211; Online Service";s:9:"thumbnail";s:99:"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg";s:12:"tmpl_created";i:1633882989;s:6:"author";s:9:"Elementor";s:3:"url";s:136:"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Online Service";s:4:"tags";s:65:"["Consulting","interior design","Landing Pages","Online Service"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:59;a:15:{s:2:"id";i:12726;s:5:"title";s:52:"Classic | Newsletter | Subscribe | Magazine and Blog";s:9:"thumbnail";s:79:"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png";s:12:"tmpl_created";i:1579061019;s:6:"author";s:9:"Elementor";s:3:"url";s:143:"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:19:"["Blog","Magazine"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:357;s:11:"trend_index";i:281;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:60;a:15:{s:2:"id";i:20361;s:5:"title";s:51:"Exercise &#038; Fitness Equipment &#8211; eCommerce";s:9:"thumbnail";s:97:"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg";s:12:"tmpl_created";i:1633883766;s:6:"author";s:9:"Elementor";s:3:"url";s:129:"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:50:"["Fitness","Health","Landing Pages","online shop"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:61;a:15:{s:2:"id";i:20394;s:5:"title";s:30:"Time Management &#8211; Events";s:9:"thumbnail";s:86:"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg";s:12:"tmpl_created";i:1633884077;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/lp/time-management-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Events";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:62;a:15:{s:2:"id";i:20414;s:5:"title";s:45:"Online English Courses &#8211; Online Service";s:9:"thumbnail";s:93:"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg";s:12:"tmpl_created";i:1633884482;s:6:"author";s:9:"Elementor";s:3:"url";s:130:"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Online Service";s:4:"tags";s:50:"["Course Online","Landing Pages","Online Service"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:63;a:15:{s:2:"id";i:20447;s:5:"title";s:33:"Shared Workspace &#8211; Business";s:9:"thumbnail";s:85:"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg";s:12:"tmpl_created";i:1633884934;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/lp/shared-workspace-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:28:"["Business","Landing Pages"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:64;a:15:{s:2:"id";i:20479;s:5:"title";s:49:"Teeth Straightening &#8211; Health &#038; Fitness";s:9:"thumbnail";s:84:"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg";s:12:"tmpl_created";i:1633886115;s:6:"author";s:9:"Elementor";s:3:"url";s:127:"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:18:"Health and Fitness";s:4:"tags";s:46:"["Business","Dental","Health","Landing Pages"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:65;a:15:{s:2:"id";i:20509;s:5:"title";s:40:"Dogs Adoption &#8211; Social Involvement";s:9:"thumbnail";s:83:"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg";s:12:"tmpl_created";i:1634022353;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:18:"Social Involvement";s:4:"tags";s:49:"["Adoption","Involvement","Landing Pages","Pets"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:66;a:15:{s:2:"id";i:13129;s:5:"title";s:28:"Classic | Menu | Photography";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png";s:12:"tmpl_created";i:1582092645;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/popups/classic-menu-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:27:"["Photography","portfolio"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:646;s:11:"trend_index";i:521;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:67;a:15:{s:2:"id";i:20539;s:5:"title";s:31:"Design Blog &#8211; Coming Soon";s:9:"thumbnail";s:94:"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg";s:12:"tmpl_created";i:1634022706;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:16:"Coming Soon Page";s:4:"tags";s:47:"["Blog","Coming Soon","Design","Landing Pages"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:68;a:15:{s:2:"id";i:20556;s:5:"title";s:41:"Faroe Islands Trip Planner &#8211; Travel";s:9:"thumbnail";s:97:"https://library.elementor.com/wp-content/uploads/2021/10/Faroe-Islands-Trip-Planner-250x280-1.jpg";s:12:"tmpl_created";i:1634026480;s:6:"author";s:9:"Elementor";s:3:"url";s:126:"https://library.elementor.com/lp/faroe-islands-trip-planner-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Travel";s:4:"tags";s:26:"["Landing Pages","Travel"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:69;a:15:{s:2:"id";i:20623;s:5:"title";s:57:"Luxurious Camping Accommodation For Events &#8211; Events";s:9:"thumbnail";s:113:"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg";s:12:"tmpl_created";i:1634041681;s:6:"author";s:9:"Elementor";s:3:"url";s:142:"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Events";s:4:"tags";s:43:"["Event","Events","Landing Pages","Travel"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:70;a:15:{s:2:"id";i:20333;s:5:"title";s:40:"Plant Pots Online Shop &#8211; eCommerce";s:9:"thumbnail";s:93:"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg";s:12:"tmpl_created";i:1634042184;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:50:"["Ecommerce","Landing Pages","online shop","Shop"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:71;a:15:{s:2:"id";i:9611;s:5:"title";s:16:"Hello Bar | Sale";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png";s:12:"tmpl_created";i:1546965350;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:9:"hello bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:605;s:11:"trend_index";i:603;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:72;a:15:{s:2:"id";i:9622;s:5:"title";s:19:"Classic | Promotion";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png";s:12:"tmpl_created";i:1546965896;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/popups/classic-promotion-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:607;s:11:"trend_index";i:460;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:73;a:15:{s:2:"id";i:9631;s:5:"title";s:38:"Slide-in | Sale | Register | Subscribe";s:9:"thumbnail";s:83:"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png";s:12:"tmpl_created";i:1546968270;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:661;s:11:"trend_index";i:705;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:74;a:15:{s:2:"id";i:9662;s:5:"title";s:33:"Bottom Bar | Register | Subscribe";s:9:"thumbnail";s:89:"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png";s:12:"tmpl_created";i:1547009087;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:10:"bottom bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:684;s:11:"trend_index";i:658;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:75;a:15:{s:2:"id";i:13281;s:5:"title";s:37:"Hello Bar | Contact | Interior Design";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png";s:12:"tmpl_created";i:1586148801;s:6:"author";s:9:"Elementor";s:3:"url";s:130:"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:9:"hello bar";s:4:"tags";s:19:"["interior design"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:763;s:11:"trend_index";i:679;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:76;a:15:{s:2:"id";i:9690;s:5:"title";s:17:"Classic | Contact";s:9:"thumbnail";s:85:"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png";s:12:"tmpl_created";i:1547011716;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/popups/classic-contact-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:393;s:11:"trend_index";i:571;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:77;a:15:{s:2:"id";i:9699;s:5:"title";s:33:"Classic | Contact | Gym | Fitness";s:9:"thumbnail";s:85:"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png";s:12:"tmpl_created";i:1547015827;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/popups/classic-contact-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:475;s:11:"trend_index";i:527;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:78;a:15:{s:2:"id";i:9571;s:5:"title";s:14:"Fly In | Login";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png";s:12:"tmpl_created";i:1547726151;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/popups/fly-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:622;s:11:"trend_index";i:538;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:79;a:15:{s:2:"id";i:9740;s:5:"title";s:25:"Classic | Promotion | App";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png";s:12:"tmpl_created";i:1547822836;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/popups/classic-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:624;s:11:"trend_index";i:691;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:80;a:15:{s:2:"id";i:9762;s:5:"title";s:36:"Classic | Register | Subscribe | Spa";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png";s:12:"tmpl_created";i:1547824145;s:6:"author";s:9:"Elementor";s:3:"url";s:127:"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:463;s:11:"trend_index";i:436;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:81;a:15:{s:2:"id";i:13413;s:5:"title";s:33:"Classic | Contact | Online Course";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg";s:12:"tmpl_created";i:1587474761;s:6:"author";s:9:"Elementor";s:3:"url";s:126:"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:29:"["Course Online","Education"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:530;s:11:"trend_index";i:369;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:82;a:15:{s:2:"id";i:9772;s:5:"title";s:27:"Hello bar | Promotion | App";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png";s:12:"tmpl_created";i:1547824279;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:9:"hello bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:760;s:11:"trend_index";i:781;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:83;a:15:{s:2:"id";i:13402;s:5:"title";s:29:"Classic | CTA | Online Course";s:9:"thumbnail";s:83:"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg";s:12:"tmpl_created";i:1587474772;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:29:"["Course Online","Education"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:619;s:11:"trend_index";i:582;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:84;a:15:{s:2:"id";i:13422;s:5:"title";s:30:"Classic | Menu | Online Course";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg";s:12:"tmpl_created";i:1587474782;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:29:"["Course Online","Education"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:516;s:11:"trend_index";i:432;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:85;a:15:{s:2:"id";i:9793;s:5:"title";s:13:"Fly In | Sale";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png";s:12:"tmpl_created";i:1547831151;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/popups/fly-in-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:670;s:11:"trend_index";i:742;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:86;a:15:{s:2:"id";i:9836;s:5:"title";s:21:"Classic | Login | Pop";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png";s:12:"tmpl_created";i:1547835635;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/popups/classic-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:634;s:11:"trend_index";i:669;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:87;a:15:{s:2:"id";i:9847;s:5:"title";s:25:"Fly In | Promotion | Lego";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png";s:12:"tmpl_created";i:1547836956;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/popups/fly-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:751;s:11:"trend_index";i:838;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:88;a:15:{s:2:"id";i:9858;s:5:"title";s:27:"Slide In | Promotion | Wine";s:9:"thumbnail";s:90:"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png";s:12:"tmpl_created";i:1547837100;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/popups/slide-in-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:769;s:11:"trend_index";i:684;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:89;a:15:{s:2:"id";i:13538;s:5:"title";s:32:"Fly-In | Newsletter | Barbershop";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg";s:12:"tmpl_created";i:1589893364;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:28:"["Barber Shop","Barbershop"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:710;s:11:"trend_index";i:667;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:90;a:15:{s:2:"id";i:9944;s:5:"title";s:33:"Slide In | Promotion | Headphones";s:9:"thumbnail";s:79:"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png";s:12:"tmpl_created";i:1547841939;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:757;s:11:"trend_index";i:700;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:91;a:15:{s:2:"id";i:9955;s:5:"title";s:14:"Fly In | Login";s:9:"thumbnail";s:83:"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png";s:12:"tmpl_created";i:1547842065;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/popups/fly-in-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:551;s:11:"trend_index";i:627;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:92;a:15:{s:2:"id";i:9965;s:5:"title";s:30:"Classic | Register | Subscribe";s:9:"thumbnail";s:79:"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png";s:12:"tmpl_created";i:1547842174;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:588;s:11:"trend_index";i:591;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:93;a:15:{s:2:"id";i:9995;s:5:"title";s:27:"Slide In | Sale | Christmas";s:9:"thumbnail";s:84:"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png";s:12:"tmpl_created";i:1547844802;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:772;s:11:"trend_index";i:817;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:94;a:15:{s:2:"id";i:10016;s:5:"title";s:16:"Hello Bar | Sale";s:9:"thumbnail";s:90:"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png";s:12:"tmpl_created";i:1547845062;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/popups/hello-bar-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:9:"hello bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:792;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:95;a:15:{s:2:"id";i:14067;s:5:"title";s:37:"Slide In | Japanese restaurant | Menu";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg";s:12:"tmpl_created";i:1592290352;s:6:"author";s:9:"Elementor";s:3:"url";s:130:"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:32:"["Food","Japanese","Restaurant"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:650;s:11:"trend_index";i:565;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:96;a:15:{s:2:"id";i:10026;s:5:"title";s:46:"Classic | Register | Subscribe | Gym | Fitness";s:9:"thumbnail";s:83:"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png";s:12:"tmpl_created";i:1547845205;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:616;s:11:"trend_index";i:587;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:97;a:15:{s:2:"id";i:10036;s:5:"title";s:43:"Full Screen | Sale | Promotion | Headphones";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png";s:12:"tmpl_created";i:1547845409;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:614;s:11:"trend_index";i:717;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:98;a:15:{s:2:"id";i:14111;s:5:"title";s:36:"Classic | Japanese restaurant | Sale";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg";s:12:"tmpl_created";i:1592300400;s:6:"author";s:9:"Elementor";s:3:"url";s:129:"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:32:"["Food","Japanese","Restaurant"]";s:10:"menu_order";i:0;s:16:"popularity_index";i:717;s:11:"trend_index";i:697;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:99;a:15:{s:2:"id";i:10057;s:5:"title";s:48:"Hello Bar | Register | Subscribe | Gym | Fitness";s:9:"thumbnail";s:91:"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png";s:12:"tmpl_created";i:1547847938;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:9:"hello bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:764;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:100;a:15:{s:2:"id";i:10087;s:5:"title";s:25:"Full Screen | Login | Spa";s:9:"thumbnail";s:88:"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png";s:12:"tmpl_created";i:1547848301;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:644;s:11:"trend_index";i:632;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:101;a:15:{s:2:"id";i:10097;s:5:"title";s:37:"Classic | Register | Subscribe | Lego";s:9:"thumbnail";s:79:"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png";s:12:"tmpl_created";i:1547848411;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:0;s:16:"popularity_index";i:689;s:11:"trend_index";i:758;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:102;a:15:{s:2:"id";i:1190;s:5:"title";s:26:"Landing Page &#8211; Hotel";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png";s:12:"tmpl_created";i:1490707391;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:1;s:16:"popularity_index";i:2;s:11:"trend_index";i:1;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:103;a:15:{s:2:"id";i:9816;s:5:"title";s:30:"Classic | Sale | Gym | Fitness";s:9:"thumbnail";s:85:"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png";s:12:"tmpl_created";i:1547991876;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/popups/classic-sale-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:1;s:16:"popularity_index";i:720;s:11:"trend_index";i:823;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:104;a:15:{s:2:"id";i:16645;s:5:"title";s:28:"Headphones &#8211; eCommerce";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png";s:12:"tmpl_created";i:1609944115;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/lp/commerce-headphones/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:39:"["Ecommerce","Landing Pages","Product"]";s:10:"menu_order";i:1;s:16:"popularity_index";i:633;s:11:"trend_index";i:87;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:105;a:15:{s:2:"id";i:8505;s:5:"title";s:11:"404 page 01";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg";s:12:"tmpl_created";i:1526415501;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/404-page-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:1;s:16:"popularity_index";i:533;s:11:"trend_index";i:222;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:106;a:15:{s:2:"id";i:18591;s:5:"title";s:28:"Coffee Sale &#8211; Business";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png";s:12:"tmpl_created";i:1633877319;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/lp/coffee-sale-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:33:"["Coffee","Landing Pages","Sale"]";s:10:"menu_order";i:1;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:20;}i:107;a:15:{s:2:"id";i:9602;s:5:"title";s:35:"Bottom Bar | Announcement | Cookies";s:9:"thumbnail";s:92:"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png";s:12:"tmpl_created";i:1546964559;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:10:"bottom bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:1;s:16:"popularity_index";i:600;s:11:"trend_index";i:604;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:108;a:15:{s:2:"id";i:225;s:5:"title";s:27:"Homepage &#8211; Restaurant";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0016.png";s:12:"tmpl_created";i:1470829872;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/homepage-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:32:"["Food","Homepage","Restaurant"]";s:10:"menu_order";i:2;s:16:"popularity_index";i:1;s:11:"trend_index";i:2;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:109;a:15:{s:2:"id";i:16762;s:5:"title";s:25:"Conference &#8211; Events";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png";s:12:"tmpl_created";i:1610455119;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/lp/conference-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Events";s:4:"tags";s:60:"["Conference","Convention","Event","Events","Landing Pages"]";s:10:"menu_order";i:2;s:16:"popularity_index";i:705;s:11:"trend_index";i:216;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:110;a:15:{s:2:"id";i:8511;s:5:"title";s:11:"404 page 02";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg";s:12:"tmpl_created";i:1526415528;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/404-page-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:2;s:16:"popularity_index";i:347;s:11:"trend_index";i:155;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:111;a:15:{s:2:"id";i:463;s:5:"title";s:22:"Homepage &#8211; Study";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/10/0022.png";s:12:"tmpl_created";i:1477388340;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/homepage-study/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:32:"["Education","Homepage","Study"]";s:10:"menu_order";i:3;s:16:"popularity_index";i:4;s:11:"trend_index";i:3;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:112;a:15:{s:2:"id";i:10277;s:5:"title";s:36:"Bottom Bar | Promotion | Sale | Book";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png";s:12:"tmpl_created";i:1548055999;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:10:"bottom bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:3;s:16:"popularity_index";i:729;s:11:"trend_index";i:802;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:113;a:15:{s:2:"id";i:11241;s:5:"title";s:36:"Classic | Digital Agency | Marketing";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg";s:12:"tmpl_created";i:1564643043;s:6:"author";s:9:"Elementor";s:3:"url";s:129:"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:3;s:16:"popularity_index";i:362;s:11:"trend_index";i:315;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:114;a:15:{s:2:"id";i:8512;s:5:"title";s:11:"404 page 03";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg";s:12:"tmpl_created";i:1526415449;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/404-page-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:3;s:16:"popularity_index";i:450;s:11:"trend_index";i:375;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:115;a:15:{s:2:"id";i:18701;s:5:"title";s:32:"Digital Course &#8211; eCommerce";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg";s:12:"tmpl_created";i:1618995134;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:57:"["Course Online","Ecommerce","Landing Pages","Marketing"]";s:10:"menu_order";i:3;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:116;a:15:{s:2:"id";i:181;s:5:"title";s:23:"Homepage &#8211; Agency";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0019.png";s:12:"tmpl_created";i:1470826567;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/homepage-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:32:"["Agency","Creative","Homepage"]";s:10:"menu_order";i:4;s:16:"popularity_index";i:3;s:11:"trend_index";i:4;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:117;a:15:{s:2:"id";i:8513;s:5:"title";s:11:"404 page 04";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg";s:12:"tmpl_created";i:1526415417;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/404-page-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:4;s:16:"popularity_index";i:420;s:11:"trend_index";i:176;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:118;a:15:{s:2:"id";i:18612;s:5:"title";s:34:"Bag Product Sale &#8211; eCommerce";s:9:"thumbnail";s:85:"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg";s:12:"tmpl_created";i:1618395406;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:61:"["Bag","Ecommerce","Landing Pages","Product","Sale","Travel"]";s:10:"menu_order";i:4;s:16:"popularity_index";i:875;s:11:"trend_index";i:605;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:119;a:15:{s:2:"id";i:9903;s:5:"title";s:34:"Bottom Bar | Promotion | Olive Oil";s:9:"thumbnail";s:93:"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png";s:12:"tmpl_created";i:1547838896;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:10:"bottom bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:4;s:16:"popularity_index";i:765;s:11:"trend_index";i:840;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:120;a:15:{s:2:"id";i:150;s:5:"title";s:19:"Product &#8211; App";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0003.png";s:12:"tmpl_created";i:1470829879;s:6:"author";s:9:"Elementor";s:3:"url";s:101:"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:5;s:16:"popularity_index";i:6;s:11:"trend_index";i:5;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:121;a:15:{s:2:"id";i:8514;s:5:"title";s:11:"404 Page 05";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg";s:12:"tmpl_created";i:1526415558;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/404-page-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:5;s:16:"popularity_index";i:419;s:11:"trend_index";i:220;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:122;a:15:{s:2:"id";i:18644;s:5:"title";s:37:"Camera Product Sale &#8211; eCommerce";s:9:"thumbnail";s:85:"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg";s:12:"tmpl_created";i:1618396388;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:59:"["Camera","Ecommerce","Landing Pages","Photography","Sale"]";s:10:"menu_order";i:5;s:16:"popularity_index";i:873;s:11:"trend_index";i:535;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:123;a:15:{s:2:"id";i:10549;s:5:"title";s:33:"Bottom Bar | Register | Subscribe";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png";s:12:"tmpl_created";i:1547967595;s:6:"author";s:9:"Elementor";s:3:"url";s:126:"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:10:"bottom bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:6;s:16:"popularity_index";i:713;s:11:"trend_index";i:666;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:124;a:15:{s:2:"id";i:8523;s:5:"title";s:11:"404 page 06";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg";s:12:"tmpl_created";i:1526415291;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/404-page-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:6;s:16:"popularity_index";i:298;s:11:"trend_index";i:268;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:125;a:15:{s:2:"id";i:18815;s:5:"title";s:25:"Car Wash &#8211; Business";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png";s:12:"tmpl_created";i:1621336431;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/lp/car-wash-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:45:"["Business","car","Discount","Landing Pages"]";s:10:"menu_order";i:6;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:126;a:15:{s:2:"id";i:19144;s:5:"title";s:25:"Birthday Party Invitation";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png";s:12:"tmpl_created";i:1623848691;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/birthday-party-invitation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:67:"["Birthday","Event","Landing Pages","Party","RSVD","Save the Date"]";s:10:"menu_order";i:6;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:127;a:15:{s:2:"id";i:16473;s:5:"title";s:26:"Beauty Salon &#8211; About";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg";s:12:"tmpl_created";i:1608622373;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/beauty-salon-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:23:"["Beauty salon","Hair"]";s:10:"menu_order";i:7;s:16:"popularity_index";i:615;s:11:"trend_index";i:184;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:128;a:15:{s:2:"id";i:8524;s:5:"title";s:11:"404 page 07";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg";s:12:"tmpl_created";i:1526415337;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/404-page-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:7;s:16:"popularity_index";i:303;s:11:"trend_index";i:171;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:129;a:15:{s:2:"id";i:18824;s:5:"title";s:33:"Design School &#8211; Coming Soon";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png";s:12:"tmpl_created";i:1621336756;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:16:"Coming Soon Page";s:4:"tags";s:49:"["Coming Soon","Design","Landing Pages","School"]";s:10:"menu_order";i:7;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:130;a:15:{s:2:"id";i:16488;s:5:"title";s:28:"Beauty Salon &#8211; Contact";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg";s:12:"tmpl_created";i:1608622374;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/beauty-salon-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:23:"["Beauty salon","Hair"]";s:10:"menu_order";i:8;s:16:"popularity_index";i:548;s:11:"trend_index";i:101;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:131;a:15:{s:2:"id";i:8526;s:5:"title";s:11:"404 page 09";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg";s:12:"tmpl_created";i:1526415474;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/404-page-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:8;s:16:"popularity_index";i:477;s:11:"trend_index";i:285;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:132;a:15:{s:2:"id";i:18819;s:5:"title";s:27:"Dog Walker &#8211; Business";s:9:"thumbnail";s:83:"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png";s:12:"tmpl_created";i:1621336601;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/lp/dog-walker-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:41:"["Business","Dog","Landing Pages","Pets"]";s:10:"menu_order";i:8;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:133;a:15:{s:2:"id";i:10529;s:5:"title";s:36:"Classic | Announcement | Maintenance";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png";s:12:"tmpl_created";i:1548046309;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/popups/classic-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:9;s:16:"popularity_index";i:474;s:11:"trend_index";i:398;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:134;a:15:{s:2:"id";i:16496;s:5:"title";s:28:"Beauty Salon &#8211; Gallery";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg";s:12:"tmpl_created";i:1608622379;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/beauty-salon-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:23:"["Beauty salon","Hair"]";s:10:"menu_order";i:9;s:16:"popularity_index";i:491;s:11:"trend_index";i:90;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:135;a:15:{s:2:"id";i:8525;s:5:"title";s:11:"404 page 08";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg";s:12:"tmpl_created";i:1526415374;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/404-page-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:9;s:16:"popularity_index";i:510;s:11:"trend_index";i:575;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:136;a:15:{s:2:"id";i:18761;s:5:"title";s:33:"Fashion Store &#8211; Coming Soon";s:9:"thumbnail";s:86:"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png";s:12:"tmpl_created";i:1621336146;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:16:"Coming Soon Page";s:4:"tags";s:56:"["Coming Soon","Fashion","Landing Pages","Shop","store"]";s:10:"menu_order";i:9;s:16:"popularity_index";i:-1;s:11:"trend_index";i:-1;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:137;a:15:{s:2:"id";i:16457;s:5:"title";s:25:"Beauty Salon &#8211; Home";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg";s:12:"tmpl_created";i:1608622383;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/beauty-salon-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:23:"["Beauty salon","Hair"]";s:10:"menu_order";i:10;s:16:"popularity_index";i:408;s:11:"trend_index";i:56;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:138;a:15:{s:2:"id";i:5438;s:5:"title";s:7:"About 1";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png";s:12:"tmpl_created";i:1520443512;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/about-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:10;s:16:"popularity_index";i:147;s:11:"trend_index";i:9;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:139;a:15:{s:2:"id";i:6135;s:5:"title";s:8:"About 10";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png";s:12:"tmpl_created";i:1520443663;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/about-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:11;s:16:"popularity_index";i:77;s:11:"trend_index";i:47;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:140;a:15:{s:2:"id";i:16518;s:5:"title";s:29:"Beauty Salon &#8211; Services";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg";s:12:"tmpl_created";i:1608622386;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/beauty-salon-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:23:"["Beauty salon","Hair"]";s:10:"menu_order";i:11;s:16:"popularity_index";i:664;s:11:"trend_index";i:261;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:141;a:15:{s:2:"id";i:17060;s:5:"title";s:36:"Private Tutor &#8211; Online Service";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png";s:12:"tmpl_created";i:1610631042;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Online Service";s:4:"tags";s:64:"["Education","Landing Pages","Online Service","Teacher","Tutor"]";s:10:"menu_order";i:11;s:16:"popularity_index";i:780;s:11:"trend_index";i:628;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:142;a:15:{s:2:"id";i:15486;s:5:"title";s:25:"Travel Blog &#8211; About";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg";s:12:"tmpl_created";i:1606215720;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/travel-blog-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Blog","Travel"]";s:10:"menu_order";i:12;s:16:"popularity_index";i:608;s:11:"trend_index";i:343;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:143;a:15:{s:2:"id";i:17232;s:5:"title";s:33:"Life Coach &#8211; Online Service";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png";s:12:"tmpl_created";i:1610902793;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/lp/life-coach-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Online Service";s:4:"tags";s:38:"["Coach","Landing Pages","Life Coach"]";s:10:"menu_order";i:12;s:16:"popularity_index";i:787;s:11:"trend_index";i:751;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:144;a:15:{s:2:"id";i:5397;s:5:"title";s:8:"About 11";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png";s:12:"tmpl_created";i:1520443503;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/about-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:12;s:16:"popularity_index";i:148;s:11:"trend_index";i:43;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:145;a:15:{s:2:"id";i:15478;s:5:"title";s:27:"Travel Blog &#8211; Contact";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg";s:12:"tmpl_created";i:1606215735;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/travel-blog-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Blog","Travel"]";s:10:"menu_order";i:13;s:16:"popularity_index";i:687;s:11:"trend_index";i:564;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:146;a:15:{s:2:"id";i:16932;s:5:"title";s:35:"Finance Consulting &#8211; Business";s:9:"thumbnail";s:79:"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png";s:12:"tmpl_created";i:1610532170;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/lp/finance-consulting-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:80:"["Advisor","Business","Consulting","Finance","Investment","Landing Pages","Tax"]";s:10:"menu_order";i:13;s:16:"popularity_index";i:790;s:11:"trend_index";i:630;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:147;a:15:{s:2:"id";i:5405;s:5:"title";s:8:"About 12";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png";s:12:"tmpl_created";i:1520443505;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/about-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:13;s:16:"popularity_index";i:216;s:11:"trend_index";i:50;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:148;a:15:{s:2:"id";i:15467;s:5:"title";s:24:"Travel Blog &#8211; Home";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg";s:12:"tmpl_created";i:1606215756;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/travel-blog-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Blog","Travel"]";s:10:"menu_order";i:14;s:16:"popularity_index";i:567;s:11:"trend_index";i:224;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:149;a:15:{s:2:"id";i:16721;s:5:"title";s:35:"Dental &#8211; Health &amp; Fitness";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg";s:12:"tmpl_created";i:1610448567;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/lp/dental-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:18:"Health and Fitness";s:4:"tags";s:44:"["Dental","Doctor","Health","Landing Pages"]";s:10:"menu_order";i:14;s:16:"popularity_index";i:801;s:11:"trend_index";i:655;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:150;a:15:{s:2:"id";i:5421;s:5:"title";s:8:"About 13";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png";s:12:"tmpl_created";i:1520443509;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/about-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:14;s:16:"popularity_index";i:215;s:11:"trend_index";i:77;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:151;a:15:{s:2:"id";i:5533;s:5:"title";s:8:"About 15";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png";s:12:"tmpl_created";i:1520443534;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/about-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:15;s:16:"popularity_index";i:21;s:11:"trend_index";i:57;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:152;a:15:{s:2:"id";i:15317;s:5:"title";s:25:"Dance Studio &#8211; Home";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg";s:12:"tmpl_created";i:1603181291;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/dance-studio-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:16:"["Dance Studio"]";s:10:"menu_order";i:15;s:16:"popularity_index";i:596;s:11:"trend_index";i:301;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:153;a:15:{s:2:"id";i:17269;s:5:"title";s:34:"Electronics Sale &#8211; eCommerce";s:9:"thumbnail";s:80:"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png";s:12:"tmpl_created";i:1610903298;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:29:"["Ecommerce","Landing Pages"]";s:10:"menu_order";i:15;s:16:"popularity_index";i:800;s:11:"trend_index";i:556;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:154;a:15:{s:2:"id";i:5525;s:5:"title";s:8:"About 14";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png";s:12:"tmpl_created";i:1520443532;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/about-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:16;s:16:"popularity_index";i:9;s:11:"trend_index";i:29;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:155;a:15:{s:2:"id";i:15334;s:5:"title";s:26:"Dance Studio &#8211; About";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg";s:12:"tmpl_created";i:1603181364;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/dance-studio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:16:"["Dance Studio"]";s:10:"menu_order";i:16;s:16:"popularity_index";i:626;s:11:"trend_index";i:373;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:156;a:15:{s:2:"id";i:17032;s:5:"title";s:42:"Donate Computer &#8211; Social Involvement";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png";s:12:"tmpl_created";i:1610630585;s:6:"author";s:9:"Elementor";s:3:"url";s:127:"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:18:"Social Involvement";s:4:"tags";s:67:"["Computer","Donate","Donation","Kids","Landing Pages","Nonprofit"]";s:10:"menu_order";i:16;s:16:"popularity_index";i:718;s:11:"trend_index";i:278;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:157;a:15:{s:2:"id";i:10413;s:5:"title";s:28:"Classic | Content Lock | Pop";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png";s:12:"tmpl_created";i:1547961774;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/popups/classic-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:17;s:16:"popularity_index";i:752;s:11:"trend_index";i:813;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:158;a:15:{s:2:"id";i:15349;s:5:"title";s:28:"Dance Studio &#8211; Classes";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg";s:12:"tmpl_created";i:1603181425;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/dance-studio-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:16:"["Dance Studio"]";s:10:"menu_order";i:17;s:16:"popularity_index";i:629;s:11:"trend_index";i:458;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:159;a:15:{s:2:"id";i:16684;s:5:"title";s:34:"SaaS HR Management &#8211; Product";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png";s:12:"tmpl_created";i:1609945486;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:7:"Product";s:4:"tags";s:39:"["HR","Landing Pages","Product","SaaS"]";s:10:"menu_order";i:17;s:16:"popularity_index";i:708;s:11:"trend_index";i:292;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:160;a:15:{s:2:"id";i:5429;s:5:"title";s:8:"About 16";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png";s:12:"tmpl_created";i:1520443510;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/about-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:17;s:16:"popularity_index";i:59;s:11:"trend_index";i:8;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:161;a:15:{s:2:"id";i:15366;s:5:"title";s:29:"Dance Studio &#8211; Schedule";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg";s:12:"tmpl_created";i:1603181056;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/dance-studio-schedule/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:16:"["Dance Studio"]";s:10:"menu_order";i:18;s:16:"popularity_index";i:698;s:11:"trend_index";i:602;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:162;a:15:{s:2:"id";i:16660;s:5:"title";s:37:"Medical center &#8211; Online service";s:9:"thumbnail";s:95:"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png";s:12:"tmpl_created";i:1609945122;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/lp/medical-center-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Online Service";s:4:"tags";s:44:"["Landing Pages","medical","Online Service"]";s:10:"menu_order";i:18;s:16:"popularity_index";i:750;s:11:"trend_index";i:332;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:163;a:15:{s:2:"id";i:5464;s:5:"title";s:8:"About 17";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png";s:12:"tmpl_created";i:1520443518;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/about-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:18;s:16:"popularity_index";i:220;s:11:"trend_index";i:142;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:164;a:15:{s:2:"id";i:10223;s:5:"title";s:15:"Classic | Login";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png";s:12:"tmpl_created";i:1547887343;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/popups/classic-login-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:19;s:16:"popularity_index";i:497;s:11:"trend_index";i:503;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:165;a:15:{s:2:"id";i:15373;s:5:"title";s:28:"Dance Studio &#8211; Pricing";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg";s:12:"tmpl_created";i:1603181678;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/dance-studio-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:16:"["Dance Studio"]";s:10:"menu_order";i:19;s:16:"popularity_index";i:731;s:11:"trend_index";i:661;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:166;a:15:{s:2:"id";i:10559;s:5:"title";s:33:"Bottom Bar | Register | Subscribe";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png";s:12:"tmpl_created";i:1547967711;s:6:"author";s:9:"Elementor";s:3:"url";s:128:"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:10:"bottom bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:19;s:16:"popularity_index";i:714;s:11:"trend_index";i:729;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:167;a:15:{s:2:"id";i:17001;s:5:"title";s:36:"Parental Counseling &#8211; Business";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png";s:12:"tmpl_created";i:1610534999;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/lp/parental-counseling-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:99:"["Advisor","Business","Coach","Counseling","Landing Pages","Online Service","Parental","Parenting"]";s:10:"menu_order";i:19;s:16:"popularity_index";i:817;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:168;a:15:{s:2:"id";i:5504;s:5:"title";s:8:"About 18";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png";s:12:"tmpl_created";i:1520443528;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/about-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:19;s:16:"popularity_index";i:104;s:11:"trend_index";i:46;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:169;a:15:{s:2:"id";i:15384;s:5:"title";s:28:"Dance Studio &#8211; Contact";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg";s:12:"tmpl_created";i:1603181738;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/dance-studio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:16:"["Dance Studio"]";s:10:"menu_order";i:20;s:16:"popularity_index";i:741;s:11:"trend_index";i:721;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:170;a:15:{s:2:"id";i:10403;s:5:"title";s:15:"Classic | Login";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png";s:12:"tmpl_created";i:1548056371;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/popups/classic-login-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:20;s:16:"popularity_index";i:627;s:11:"trend_index";i:659;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:171;a:15:{s:2:"id";i:16742;s:5:"title";s:31:"Online Course &#8211; Education";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png";s:12:"tmpl_created";i:1610454122;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/lp/online-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"Education";s:4:"tags";s:55:"["Academy","Course Online","Education","Landing Pages"]";s:10:"menu_order";i:20;s:16:"popularity_index";i:777;s:11:"trend_index";i:776;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:172;a:15:{s:2:"id";i:5515;s:5:"title";s:8:"About 19";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png";s:12:"tmpl_created";i:1520443530;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/about-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:20;s:16:"popularity_index";i:268;s:11:"trend_index";i:161;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:173;a:15:{s:2:"id";i:15158;s:5:"title";s:26:"Psychologist &#8211; About";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg";s:12:"tmpl_created";i:1600157561;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/psychologist-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:34:"["Psychologist","Psychotherapist"]";s:10:"menu_order";i:21;s:16:"popularity_index";i:618;s:11:"trend_index";i:426;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:174;a:15:{s:2:"id";i:17284;s:5:"title";s:38:"Dietitian &#8211; Health &amp; Fitness";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png";s:12:"tmpl_created";i:1610903484;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:18:"Health and Fitness";s:4:"tags";s:39:"["Fitness","Health","landscape design"]";s:10:"menu_order";i:21;s:16:"popularity_index";i:814;s:11:"trend_index";i:800;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:175;a:15:{s:2:"id";i:9913;s:5:"title";s:27:"Classic | Login | Christmas";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png";s:12:"tmpl_created";i:1547841430;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/popups/classic-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:21;s:16:"popularity_index";i:542;s:11:"trend_index";i:417;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:176;a:15:{s:2:"id";i:5472;s:5:"title";s:7:"About 2";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png";s:12:"tmpl_created";i:1520443520;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/about-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:21;s:16:"popularity_index";i:210;s:11:"trend_index";i:116;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:177;a:15:{s:2:"id";i:15197;s:5:"title";s:28:"Psychologist &#8211; Contact";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg";s:12:"tmpl_created";i:1600160499;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/psychologist-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:34:"["Psychologist","Psychotherapist"]";s:10:"menu_order";i:22;s:16:"popularity_index";i:666;s:11:"trend_index";i:558;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:178;a:15:{s:2:"id";i:16897;s:5:"title";s:30:"Personal Chef &#8211; Business";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png";s:12:"tmpl_created";i:1610466247;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/lp/personal-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:53:"["Business","Chef","Food","Landing Pages","Services"]";s:10:"menu_order";i:22;s:16:"popularity_index";i:795;s:11:"trend_index";i:617;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:179;a:15:{s:2:"id";i:5455;s:5:"title";s:8:"About 20";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png";s:12:"tmpl_created";i:1520443516;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/about-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:22;s:16:"popularity_index";i:134;s:11:"trend_index";i:70;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:180;a:15:{s:2:"id";i:15142;s:5:"title";s:25:"Psychologist &#8211; Home";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg";s:12:"tmpl_created";i:1600156308;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/psychologist-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:34:"["Psychologist","Psychotherapist"]";s:10:"menu_order";i:23;s:16:"popularity_index";i:464;s:11:"trend_index";i:297;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:181;a:15:{s:2:"id";i:16946;s:5:"title";s:52:"Online Full-Stack Developer Course &#8211; Education";s:9:"thumbnail";s:95:"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png";s:12:"tmpl_created";i:1610532778;s:6:"author";s:9:"Elementor";s:3:"url";s:137:"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"Education";s:4:"tags";s:76:"["Academy","Coding","Course Online","Developer","Education","Landing Pages"]";s:10:"menu_order";i:23;s:16:"popularity_index";i:805;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:182;a:15:{s:2:"id";i:5413;s:5:"title";s:8:"About 21";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png";s:12:"tmpl_created";i:1520443507;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/about-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:23;s:16:"popularity_index";i:83;s:11:"trend_index";i:52;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:183;a:15:{s:2:"id";i:15188;s:5:"title";s:28:"Psychologist &#8211; Pricing";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg";s:12:"tmpl_created";i:1600159731;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/psychologist-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:34:"["Psychologist","Psychotherapist"]";s:10:"menu_order";i:24;s:16:"popularity_index";i:732;s:11:"trend_index";i:537;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:184;a:15:{s:2:"id";i:16868;s:5:"title";s:40:"Virtual Assistant &#8211; Online Service";s:9:"thumbnail";s:88:"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png";s:12:"tmpl_created";i:1610465656;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Online Service";s:4:"tags";s:46:"["Assistant","Landing Pages","Online Service"]";s:10:"menu_order";i:24;s:16:"popularity_index";i:793;s:11:"trend_index";i:757;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:185;a:15:{s:2:"id";i:5447;s:5:"title";s:7:"About 3";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png";s:12:"tmpl_created";i:1520443514;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/about-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:24;s:16:"popularity_index";i:48;s:11:"trend_index";i:12;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:186;a:15:{s:2:"id";i:15167;s:5:"title";s:29:"Psychologist &#8211; Services";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg";s:12:"tmpl_created";i:1600158206;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/psychologist-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:34:"["Psychologist","Psychotherapist"]";s:10:"menu_order";i:25;s:16:"popularity_index";i:606;s:11:"trend_index";i:379;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:187;a:15:{s:2:"id";i:16812;s:5:"title";s:40:"Construction Project &#8211; Real Estate";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png";s:12:"tmpl_created";i:1610463582;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:11:"Real Estate";s:4:"tags";s:59:"["Construction","Landing Pages","Real estate","Realestate"]";s:10:"menu_order";i:25;s:16:"popularity_index";i:796;s:11:"trend_index";i:724;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:188;a:15:{s:2:"id";i:5480;s:5:"title";s:7:"About 4";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png";s:12:"tmpl_created";i:1520443522;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/about-4-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:25;s:16:"popularity_index";i:428;s:11:"trend_index";i:303;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:189;a:15:{s:2:"id";i:14932;s:5:"title";s:30:"Flooring Company &#8211; About";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/08/About.png";s:12:"tmpl_created";i:1597740110;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/flooring-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:39:"["Flooring company","Flooring website"]";s:10:"menu_order";i:26;s:16:"popularity_index";i:488;s:11:"trend_index";i:319;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:190;a:15:{s:2:"id";i:6027;s:5:"title";s:7:"About 5";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png";s:12:"tmpl_created";i:1520443639;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/about-5-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:26;s:16:"popularity_index";i:40;s:11:"trend_index";i:40;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:191;a:15:{s:2:"id";i:16960;s:5:"title";s:44:"Dog &amp; Cat Food Delivery &#8211; Business";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png";s:12:"tmpl_created";i:1610533581;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:71:"["Business","Cat","Delivery","Dog","Food","Landing Pages","Pet","Pets"]";s:10:"menu_order";i:26;s:16:"popularity_index";i:782;s:11:"trend_index";i:510;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:192;a:15:{s:2:"id";i:9592;s:5:"title";s:26:"Classic | Promotion | Sale";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png";s:12:"tmpl_created";i:1546963720;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/popups/classic-promotion-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:26;s:16:"popularity_index";i:663;s:11:"trend_index";i:807;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:193;a:15:{s:2:"id";i:10210;s:5:"title";s:29:"Classic | Promotion | Webinar";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png";s:12:"tmpl_created";i:1547886103;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:27;s:16:"popularity_index";i:784;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:194;a:15:{s:2:"id";i:14998;s:5:"title";s:32:"Flooring Company &#8211; Contact";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png";s:12:"tmpl_created";i:1597740222;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/flooring-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:39:"["Flooring company","Flooring website"]";s:10:"menu_order";i:27;s:16:"popularity_index";i:553;s:11:"trend_index";i:380;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:195;a:15:{s:2:"id";i:6036;s:5:"title";s:7:"About 6";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png";s:12:"tmpl_created";i:1520443641;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/about-6-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:27;s:16:"popularity_index";i:90;s:11:"trend_index";i:123;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:196;a:15:{s:2:"id";i:17095;s:5:"title";s:36:"Mobile Pet Grooming &#8211; Business";s:9:"thumbnail";s:80:"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png";s:12:"tmpl_created";i:1610632115;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:38:"["Dog","Groom","Landing Pages","Pets"]";s:10:"menu_order";i:27;s:16:"popularity_index";i:786;s:11:"trend_index";i:731;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:197;a:15:{s:2:"id";i:14965;s:5:"title";s:32:"Flooring Company &#8211; Gallery";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png";s:12:"tmpl_created";i:1597740353;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/flooring-company-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:39:"["Flooring company","Flooring website"]";s:10:"menu_order";i:28;s:16:"popularity_index";i:371;s:11:"trend_index";i:291;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:198;a:15:{s:2:"id";i:17245;s:5:"title";s:34:"Marketing Course &#8211; Education";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png";s:12:"tmpl_created";i:1610902958;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/lp/marketing-course-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"Education";s:4:"tags";s:45:"["Course Online","Landing Pages","Marketing"]";s:10:"menu_order";i:28;s:16:"popularity_index";i:770;s:11:"trend_index";i:430;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:199;a:15:{s:2:"id";i:5488;s:5:"title";s:7:"About 7";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png";s:12:"tmpl_created";i:1520443524;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/about-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:28;s:16:"popularity_index";i:307;s:11:"trend_index";i:169;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:200;a:15:{s:2:"id";i:14947;s:5:"title";s:33:"Flooring company &#8211; Services";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2020/08/Services.png";s:12:"tmpl_created";i:1597740551;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/flooring-company-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:39:"["Flooring company","Flooring website"]";s:10:"menu_order";i:29;s:16:"popularity_index";i:538;s:11:"trend_index";i:392;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:201;a:15:{s:2:"id";i:6122;s:5:"title";s:7:"About 8";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png";s:12:"tmpl_created";i:1520443661;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/about-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:29;s:16:"popularity_index";i:38;s:11:"trend_index";i:26;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:202;a:15:{s:2:"id";i:16983;s:5:"title";s:41:"Pilates Instructor &#8211; Online Service";s:9:"thumbnail";s:79:"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png";s:12:"tmpl_created";i:1610534138;s:6:"author";s:9:"Elementor";s:3:"url";s:126:"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Online Service";s:4:"tags";s:70:"["Free Trial","Instructor","Landing Pages","Online Service","Pilates"]";s:10:"menu_order";i:29;s:16:"popularity_index";i:778;s:11:"trend_index";i:412;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:203;a:15:{s:2:"id";i:14901;s:5:"title";s:29:"Flooring Company &#8211; Home";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2020/08/Home.png";s:12:"tmpl_created";i:1597740474;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/flooring-company-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:39:"["Flooring company","Flooring website"]";s:10:"menu_order";i:30;s:16:"popularity_index";i:387;s:11:"trend_index";i:185;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:204;a:15:{s:2:"id";i:18568;s:5:"title";s:32:"Flower Delivery &#8211; Business";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png";s:12:"tmpl_created";i:1617546716;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/lp/flower-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:37:"["Delivery","Flower","Landing Pages"]";s:10:"menu_order";i:30;s:16:"popularity_index";i:874;s:11:"trend_index";i:763;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:205;a:15:{s:2:"id";i:10047;s:5:"title";s:15:"Classic | Login";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png";s:12:"tmpl_created";i:1547847757;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/popups/classic-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:30;s:16:"popularity_index";i:522;s:11:"trend_index";i:513;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:206;a:15:{s:2:"id";i:5496;s:5:"title";s:7:"About 9";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png";s:12:"tmpl_created";i:1520443526;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/about-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"about";s:4:"tags";s:9:"["About"]";s:10:"menu_order";i:30;s:16:"popularity_index";i:523;s:11:"trend_index";i:453;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:207;a:15:{s:2:"id";i:16917;s:5:"title";s:22:"Webinar &#8211; Events";s:9:"thumbnail";s:80:"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg";s:12:"tmpl_created";i:1610466822;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/lp/webinar-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Events";s:4:"tags";s:36:"["Events","Landing Pages","Webinar"]";s:10:"menu_order";i:31;s:16:"popularity_index";i:821;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:208;a:15:{s:2:"id";i:8961;s:5:"title";s:9:"archive 1";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg";s:12:"tmpl_created";i:1528639909;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:2:"[]";s:10:"menu_order";i:31;s:16:"popularity_index";i:79;s:11:"trend_index";i:15;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:209;a:15:{s:2:"id";i:9879;s:5:"title";s:38:"Classic | Register | Subscribe | Leads";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png";s:12:"tmpl_created";i:1547838416;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:31;s:16:"popularity_index";i:676;s:11:"trend_index";i:761;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:210;a:15:{s:2:"id";i:14737;s:5:"title";s:32:"Luxury Real Estate &#8211; About";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/07/About.png";s:12:"tmpl_created";i:1595313527;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:28:"["Real estate","Realestate"]";s:10:"menu_order";i:31;s:16:"popularity_index";i:150;s:11:"trend_index";i:447;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:211;a:15:{s:2:"id";i:17079;s:5:"title";s:42:"Calls Volunteer &#8211; Social Involvement";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png";s:12:"tmpl_created";i:1610631774;s:6:"author";s:9:"Elementor";s:3:"url";s:127:"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:18:"Social Involvement";s:4:"tags";s:68:"["Care","Covid-19","Help","Involvement","Landing Pages","Volunteer"]";s:10:"menu_order";i:32;s:16:"popularity_index";i:854;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:212;a:15:{s:2:"id";i:8969;s:5:"title";s:9:"archive 2";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg";s:12:"tmpl_created";i:1528700014;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:2:"[]";s:10:"menu_order";i:32;s:16:"popularity_index";i:250;s:11:"trend_index";i:124;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:213;a:15:{s:2:"id";i:14756;s:5:"title";s:34:"Luxury Real Estate &#8211; Contact";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png";s:12:"tmpl_created";i:1595313519;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:28:"["Real estate","Realestate"]";s:10:"menu_order";i:32;s:16:"popularity_index";i:610;s:11:"trend_index";i:569;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:214;a:15:{s:2:"id";i:16836;s:5:"title";s:33:"Marketing Agency &#8211; Business";s:9:"thumbnail";s:89:"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg";s:12:"tmpl_created";i:1610464490;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/lp/marketing-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:74:"["Agency","Business","Landing Pages","Marketing","Marketing Landing Page"]";s:10:"menu_order";i:33;s:16:"popularity_index";i:816;s:11:"trend_index";i:787;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:215;a:15:{s:2:"id";i:8973;s:5:"title";s:9:"archive 3";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg";s:12:"tmpl_created";i:1528700205;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:2:"[]";s:10:"menu_order";i:33;s:16:"popularity_index";i:176;s:11:"trend_index";i:54;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:216;a:15:{s:2:"id";i:14716;s:5:"title";s:31:"Luxury Real Estate &#8211; Home";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2020/07/Home.png";s:12:"tmpl_created";i:1595313512;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:28:"["Real estate","Realestate"]";s:10:"menu_order";i:33;s:16:"popularity_index";i:394;s:11:"trend_index";i:165;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:217;a:15:{s:2:"id";i:16785;s:5:"title";s:42:"Gym Promotion &#8211; Health &amp; Fitness";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg";s:12:"tmpl_created";i:1610455496;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:18:"Health and Fitness";s:4:"tags";s:42:"["Fitness","Gym","Health","Landing Pages"]";s:10:"menu_order";i:34;s:16:"popularity_index";i:820;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:218;a:15:{s:2:"id";i:8977;s:5:"title";s:9:"archive 4";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg";s:12:"tmpl_created";i:1528700326;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/archive-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:2:"[]";s:10:"menu_order";i:34;s:16:"popularity_index";i:354;s:11:"trend_index";i:396;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:219;a:15:{s:2:"id";i:14763;s:5:"title";s:31:"Luxury Real Estate &#8211; News";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png";s:12:"tmpl_created";i:1595313273;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:28:"["Real estate","Realestate"]";s:10:"menu_order";i:34;s:16:"popularity_index";i:404;s:11:"trend_index";i:167;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:220;a:15:{s:2:"id";i:10297;s:5:"title";s:14:"Classic | Sale";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png";s:12:"tmpl_created";i:1548056099;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/popups/classic-sale-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:35;s:16:"popularity_index";i:590;s:11:"trend_index";i:607;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:221;a:15:{s:2:"id";i:18492;s:5:"title";s:34:"Bicycle Pre-Sale &#8211; eCommerce";s:9:"thumbnail";s:90:"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png";s:12:"tmpl_created";i:1617535552;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:34:"["Bicycle","Landing Pages","Sale"]";s:10:"menu_order";i:35;s:16:"popularity_index";i:871;s:11:"trend_index";i:826;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:222;a:15:{s:2:"id";i:8981;s:5:"title";s:9:"archive 5";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg";s:12:"tmpl_created";i:1528700484;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/archive-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:2:"[]";s:10:"menu_order";i:35;s:16:"popularity_index";i:333;s:11:"trend_index";i:195;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:223;a:15:{s:2:"id";i:13960;s:5:"title";s:32:"Japanese restaurant &#8211; Home";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg";s:12:"tmpl_created";i:1592289775;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:32:"["Food","Japanese","Restaurant"]";s:10:"menu_order";i:35;s:16:"popularity_index";i:537;s:11:"trend_index";i:287;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:224;a:15:{s:2:"id";i:10393;s:5:"title";s:14:"Classic | Sale";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png";s:12:"tmpl_created";i:1548056682;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/popups/classic-sale-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:36;s:16:"popularity_index";i:678;s:11:"trend_index";i:837;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:225;a:15:{s:2:"id";i:18349;s:5:"title";s:39:"Virtual try-on glasses &#8211; Business";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png";s:12:"tmpl_created";i:1614772569;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:64:"["Fashion","Glasses","Landing Pages","Online Service","Virtual"]";s:10:"menu_order";i:36;s:16:"popularity_index";i:848;s:11:"trend_index";i:803;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:226;a:15:{s:2:"id";i:8985;s:5:"title";s:9:"archive 6";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg";s:12:"tmpl_created";i:1528700612;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/archive-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:2:"[]";s:10:"menu_order";i:36;s:16:"popularity_index";i:204;s:11:"trend_index";i:95;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:227;a:15:{s:2:"id";i:13993;s:5:"title";s:45:"Japanese restaurant &#8211; Chef&#8217;s Menu";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg";s:12:"tmpl_created";i:1592289691;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:32:"["Food","Japanese","Restaurant"]";s:10:"menu_order";i:36;s:16:"popularity_index";i:651;s:11:"trend_index";i:675;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:228;a:15:{s:2:"id";i:17458;s:5:"title";s:31:"Moving Company &#8211; Business";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png";s:12:"tmpl_created";i:1612727025;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/lp/moving-company-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:46:"["Business","Landing Pages","Movers","moving"]";s:10:"menu_order";i:37;s:16:"popularity_index";i:826;s:11:"trend_index";i:767;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:229;a:15:{s:2:"id";i:8989;s:5:"title";s:9:"archive 7";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg";s:12:"tmpl_created";i:1528701063;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/archive-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:2:"[]";s:10:"menu_order";i:37;s:16:"popularity_index";i:208;s:11:"trend_index";i:111;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:230;a:15:{s:2:"id";i:14012;s:5:"title";s:36:"Japanese restaurant &#8211; Bar Menu";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg";s:12:"tmpl_created";i:1592289665;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:32:"["Food","Japanese","Restaurant"]";s:10:"menu_order";i:37;s:16:"popularity_index";i:735;s:11:"trend_index";i:829;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:231;a:15:{s:2:"id";i:10579;s:5:"title";s:14:"Classic | Sale";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png";s:12:"tmpl_created";i:1547967887;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/popups/classic-sale-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:38;s:16:"popularity_index";i:712;s:11:"trend_index";i:782;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:232;a:15:{s:2:"id";i:18517;s:5:"title";s:29:"Food Blog &#8211; Coming Soon";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png";s:12:"tmpl_created";i:1617539897;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:16:"Coming Soon Page";s:4:"tags";s:45:"["Blog","Coming Soon","Food","Landing Pages"]";s:10:"menu_order";i:38;s:16:"popularity_index";i:844;s:11:"trend_index";i:672;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:233;a:15:{s:2:"id";i:8996;s:5:"title";s:9:"archive 8";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg";s:12:"tmpl_created";i:1528701290;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/archive-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:2:"[]";s:10:"menu_order";i:38;s:16:"popularity_index";i:227;s:11:"trend_index";i:153;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:234;a:15:{s:2:"id";i:13917;s:5:"title";s:33:"Japanese restaurant &#8211; About";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg";s:12:"tmpl_created";i:1592289629;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/japanese-restaurant-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:32:"["Food","Japanese","Restaurant"]";s:10:"menu_order";i:38;s:16:"popularity_index";i:640;s:11:"trend_index";i:389;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:235;a:15:{s:2:"id";i:17379;s:5:"title";s:33:"IT Service &#8211; Online Service";s:9:"thumbnail";s:83:"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png";s:12:"tmpl_created";i:1612713022;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/lp/it-service-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Online Service";s:4:"tags";s:41:"["IT","Landing Pages","Remote","Support"]";s:10:"menu_order";i:39;s:16:"popularity_index";i:806;s:11:"trend_index";i:634;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:236;a:15:{s:2:"id";i:9001;s:5:"title";s:9:"archive 9";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg";s:12:"tmpl_created";i:1528701433;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/archive-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:2:"[]";s:10:"menu_order";i:39;s:16:"popularity_index";i:265;s:11:"trend_index";i:208;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:237;a:15:{s:2:"id";i:13937;s:5:"title";s:35:"Japanese restaurant &#8211; Gallery";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg";s:12:"tmpl_created";i:1592289748;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:32:"["Food","Japanese","Restaurant"]";s:10:"menu_order";i:39;s:16:"popularity_index";i:648;s:11:"trend_index";i:551;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:238;a:15:{s:2:"id";i:18560;s:5:"title";s:52:"Finance Learning Platform &#8211; Under Construction";s:9:"thumbnail";s:89:"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png";s:12:"tmpl_created";i:1617542761;s:6:"author";s:9:"Elementor";s:3:"url";s:137:"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:18:"Under Construction";s:4:"tags";s:27:"["Finance","Landing Pages"]";s:10:"menu_order";i:40;s:16:"popularity_index";i:843;s:11:"trend_index";i:561;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:239;a:15:{s:2:"id";i:13528;s:5:"title";s:22:"Barbershop &#8211; 404";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg";s:12:"tmpl_created";i:1589893152;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/barbershop-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:34:"["404","Barber Shop","Barbershop"]";s:10:"menu_order";i:40;s:16:"popularity_index";i:768;s:11:"trend_index";i:681;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:240;a:15:{s:2:"id";i:14030;s:5:"title";s:34:"Japanese restaurant &#8211; Events";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg";s:12:"tmpl_created";i:1592289713;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/japanese-restaurant-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:32:"["Food","Japanese","Restaurant"]";s:10:"menu_order";i:40;s:16:"popularity_index";i:723;s:11:"trend_index";i:711;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:241;a:15:{s:2:"id";i:18528;s:5:"title";s:36:"Home Decor Store &#8211; Coming Soon";s:9:"thumbnail";s:84:"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png";s:12:"tmpl_created";i:1617541784;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:16:"Coming Soon Page";s:4:"tags";s:57:"["Coming Soon","Decor","interior design","Landing Pages"]";s:10:"menu_order";i:41;s:16:"popularity_index";i:872;s:11:"trend_index";i:819;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:242;a:15:{s:2:"id";i:13518;s:5:"title";s:26:"Barbershop &#8211; Archive";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg";s:12:"tmpl_created";i:1589893157;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/blocks/barbershop-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:28:"["Barber Shop","Barbershop"]";s:10:"menu_order";i:41;s:16:"popularity_index";i:737;s:11:"trend_index";i:523;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:243;a:15:{s:2:"id";i:13984;s:5:"title";s:40:"Japanese restaurant &#8211; Reservations";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg";s:12:"tmpl_created";i:1592294757;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:32:"["Food","Japanese","Restaurant"]";s:10:"menu_order";i:41;s:16:"popularity_index";i:715;s:11:"trend_index";i:727;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:244;a:15:{s:2:"id";i:17504;s:5:"title";s:29:"Hair Stylist &#8211; Business";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png";s:12:"tmpl_created";i:1612883014;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/lp/hair-stylist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:59:"["Business","Hair","hairdresser","Landing Pages","stylist"]";s:10:"menu_order";i:42;s:16:"popularity_index";i:840;s:11:"trend_index";i:806;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:245;a:15:{s:2:"id";i:13604;s:5:"title";s:25:"Barbershop &#8211; Footer";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg";s:12:"tmpl_created";i:1589893147;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/blocks/barbershop-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:37:"["Barber Shop","Barbershop","Footer"]";s:10:"menu_order";i:42;s:16:"popularity_index";i:555;s:11:"trend_index";i:267;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:246;a:15:{s:2:"id";i:13479;s:5:"title";s:23:"Barbershop &#8211; Home";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg";s:12:"tmpl_created";i:1589893275;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/barbershop-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:28:"["Barber Shop","Barbershop"]";s:10:"menu_order";i:42;s:16:"popularity_index";i:683;s:11:"trend_index";i:832;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:247;a:15:{s:2:"id";i:10180;s:5:"title";s:21:"Fly In | Announcement";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png";s:12:"tmpl_created";i:1548045309;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:43;s:16:"popularity_index";i:686;s:11:"trend_index";i:788;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:248;a:15:{s:2:"id";i:18449;s:5:"title";s:46:"Aesthetic Clinic &#8211; Health &#038; Fitness";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png";s:12:"tmpl_created";i:1616682181;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:18:"Health and Fitness";s:4:"tags";s:57:"["Aesthetic","Beauty","Fitness","Health","Landing Pages"]";s:10:"menu_order";i:43;s:16:"popularity_index";i:859;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:249;a:15:{s:2:"id";i:13612;s:5:"title";s:25:"Barbershop &#8211; Header";s:9:"thumbnail";s:79:"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg";s:12:"tmpl_created";i:1589893142;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/blocks/barbershop-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:37:"["Barber Shop","Barbershop","Header"]";s:10:"menu_order";i:43;s:16:"popularity_index";i:343;s:11:"trend_index";i:137;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:250;a:15:{s:2:"id";i:13503;s:5:"title";s:24:"Barbershop &#8211; About";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg";s:12:"tmpl_created";i:1589893289;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/barbershop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:28:"["Barber Shop","Barbershop"]";s:10:"menu_order";i:43;s:16:"popularity_index";i:744;s:11:"trend_index";i:739;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:251;a:15:{s:2:"id";i:17353;s:5:"title";s:44:"Online Cooking Course &#8211; Online Service";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png";s:12:"tmpl_created";i:1612705144;s:6:"author";s:9:"Elementor";s:3:"url";s:129:"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Online Service";s:4:"tags";s:50:"["Cooking","Course Online","Food","Landing Pages"]";s:10:"menu_order";i:44;s:16:"popularity_index";i:845;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:252;a:15:{s:2:"id";i:13621;s:5:"title";s:30:"Barbershop &#8211; Single Post";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg";s:12:"tmpl_created";i:1589893137;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:28:"["Barber Shop","Barbershop"]";s:10:"menu_order";i:44;s:16:"popularity_index";i:736;s:11:"trend_index";i:580;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:253;a:15:{s:2:"id";i:13548;s:5:"title";s:27:"Barbershop &#8211; Services";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg";s:12:"tmpl_created";i:1589893298;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/barbershop-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:28:"["Barber Shop","Barbershop"]";s:10:"menu_order";i:44;s:16:"popularity_index";i:761;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:254;a:15:{s:2:"id";i:16527;s:5:"title";s:24:"Beauty Salon &#8211; 404";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg";s:12:"tmpl_created";i:1608622517;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:29:"["404","Beauty salon","Hair"]";s:10:"menu_order";i:45;s:16:"popularity_index";i:742;s:11:"trend_index";i:563;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:255;a:15:{s:2:"id";i:18550;s:5:"title";s:39:"Online Store &#8211; Under Construction";s:9:"thumbnail";s:85:"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png";s:12:"tmpl_created";i:1617542506;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/lp/online-store-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:18:"Under Construction";s:4:"tags";s:59:"["Landing Pages","online shop","Shop","Under Construction"]";s:10:"menu_order";i:45;s:16:"popularity_index";i:832;s:11:"trend_index";i:600;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:256;a:15:{s:2:"id";i:13560;s:5:"title";s:26:"Barbershop &#8211; Gallery";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg";s:12:"tmpl_created";i:1589893307;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/barbershop-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:28:"["Barber Shop","Barbershop"]";s:10:"menu_order";i:45;s:16:"popularity_index";i:756;s:11:"trend_index";i:822;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:257;a:15:{s:2:"id";i:9731;s:5:"title";s:26:"Classic | Sale | Promotion";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png";s:12:"tmpl_created";i:1547976166;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/popups/classic-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:7:"classic";s:4:"tags";s:2:"[]";s:10:"menu_order";i:46;s:16:"popularity_index";i:635;s:11:"trend_index";i:648;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:258;a:15:{s:2:"id";i:16535;s:5:"title";s:27:"Beauty Salon &#8211; Footer";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg";s:12:"tmpl_created";i:1608622498;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:32:"["Beauty salon","Footer","Hair"]";s:10:"menu_order";i:46;s:16:"popularity_index";i:524;s:11:"trend_index";i:126;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:259;a:15:{s:2:"id";i:18539;s:5:"title";s:40:"Travel Agency &#8211; Under Construction";s:9:"thumbnail";s:88:"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png";s:12:"tmpl_created";i:1617610273;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:18:"Under Construction";s:4:"tags";s:56:"["Agency","Landing Pages","Travel","Under Construction"]";s:10:"menu_order";i:46;s:16:"popularity_index";i:876;s:11:"trend_index";i:652;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:260;a:15:{s:2:"id";i:13587;s:5:"title";s:26:"Barbershop &#8211; Contact";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg";s:12:"tmpl_created";i:1589893315;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/barbershop-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:28:"["Barber Shop","Barbershop"]";s:10:"menu_order";i:46;s:16:"popularity_index";i:753;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:261;a:15:{s:2:"id";i:16545;s:5:"title";s:27:"Beauty Salon &#8211; Header";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg";s:12:"tmpl_created";i:1608622495;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:32:"["Beauty salon","Hair","Header"]";s:10:"menu_order";i:47;s:16:"popularity_index";i:356;s:11:"trend_index";i:49;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:262;a:15:{s:2:"id";i:18270;s:5:"title";s:24:"Open week &#8211; Events";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png";s:12:"tmpl_created";i:1614767186;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/lp/open-week-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Events";s:4:"tags";s:59:"["Education","Event","Events","Landing Pages","University"]";s:10:"menu_order";i:47;s:16:"popularity_index";i:831;s:11:"trend_index";i:673;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:263;a:15:{s:2:"id";i:13307;s:5:"title";s:26:"Online Course &#8211; Home";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg";s:12:"tmpl_created";i:1587474541;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/online-course-home/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:29:"["Course Online","Education"]";s:10:"menu_order";i:47;s:16:"popularity_index";i:230;s:11:"trend_index";i:125;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:264;a:15:{s:2:"id";i:7686;s:5:"title";s:12:"Blog Posts 1";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png";s:12:"tmpl_created";i:1521558047;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/blocks/blog-posts-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"page";s:4:"tags";s:26:"["Archive","Blog","posts"]";s:10:"menu_order";i:48;s:16:"popularity_index";i:131;s:11:"trend_index";i:152;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:265;a:15:{s:2:"id";i:18300;s:5:"title";s:30:"Makeup Artist &#8211; Business";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png";s:12:"tmpl_created";i:1614768608;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/lp/makeup-artist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:79:"["Beauty","Business","Course Online","Landing Pages","Makeup","Online Service"]";s:10:"menu_order";i:48;s:16:"popularity_index";i:861;s:11:"trend_index";i:783;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:266;a:15:{s:2:"id";i:13328;s:5:"title";s:27:"Online Course &#8211; About";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg";s:12:"tmpl_created";i:1587474558;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/online-course-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:29:"["Course Online","Education"]";s:10:"menu_order";i:48;s:16:"popularity_index";i:508;s:11:"trend_index";i:429;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:267;a:15:{s:2:"id";i:18329;s:5:"title";s:63:"Online Real Estate Investment Conference &#8211; Online Service";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png";s:12:"tmpl_created";i:1614770404;s:6:"author";s:9:"Elementor";s:3:"url";s:148:"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Online Service";s:4:"tags";s:76:"["Conference","Event","Events","Landing Pages","Online Event","Real estate"]";s:10:"menu_order";i:49;s:16:"popularity_index";i:866;s:11:"trend_index";i:779;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:268;a:15:{s:2:"id";i:13338;s:5:"title";s:33:"Online Course &#8211; Course Page";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png";s:12:"tmpl_created";i:1587474574;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/online-course-course-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:29:"["Course Online","Education"]";s:10:"menu_order";i:49;s:16:"popularity_index";i:337;s:11:"trend_index";i:310;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:269;a:15:{s:2:"id";i:5283;s:5:"title";s:9:"Clients 1";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png";s:12:"tmpl_created";i:1520443478;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/clients-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"clients";s:4:"tags";s:11:"["clients"]";s:10:"menu_order";i:49;s:16:"popularity_index";i:294;s:11:"trend_index";i:202;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:270;a:15:{s:2:"id";i:18391;s:5:"title";s:45:"Children&#8217;s Optometrist &#8211; Business";s:9:"thumbnail";s:94:"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png";s:12:"tmpl_created";i:1614773564;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:85:"["Business","Children","Eye","Glasses","Health","Kids","Landing Pages","Optometrist"]";s:10:"menu_order";i:50;s:16:"popularity_index";i:877;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:271;a:15:{s:2:"id";i:13352;s:5:"title";s:29:"Online Course &#8211; Contact";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg";s:12:"tmpl_created";i:1587474591;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/online-course-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:29:"["Course Online","Education"]";s:10:"menu_order";i:50;s:16:"popularity_index";i:565;s:11:"trend_index";i:533;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:272;a:15:{s:2:"id";i:5306;s:5:"title";s:10:"Clients 10";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png";s:12:"tmpl_created";i:1520443484;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/clients-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"clients";s:4:"tags";s:11:"["clients"]";s:10:"menu_order";i:50;s:16:"popularity_index";i:657;s:11:"trend_index";i:581;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:273;a:15:{s:2:"id";i:18366;s:5:"title";s:30:"Car Insurance &#8211; Business";s:9:"thumbnail";s:86:"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png";s:12:"tmpl_created";i:1614773263;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/lp/car-insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:46:"["Business","car","Insurance","Landing Pages"]";s:10:"menu_order";i:51;s:16:"popularity_index";i:869;s:11:"trend_index";i:797;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:274;a:15:{s:2:"id";i:13187;s:5:"title";s:33:"Interior Design &#8211; Home Page";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2020/04/Home.png";s:12:"tmpl_created";i:1586148661;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/interior-design-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:30:"["Business","interior design"]";s:10:"menu_order";i:51;s:16:"popularity_index";i:331;s:11:"trend_index";i:264;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:275;a:15:{s:2:"id";i:5341;s:5:"title";s:10:"Clients 11";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png";s:12:"tmpl_created";i:1520443491;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/clients-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"clients";s:4:"tags";s:11:"["clients"]";s:10:"menu_order";i:51;s:16:"popularity_index";i:603;s:11:"trend_index";i:633;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:276;a:15:{s:2:"id";i:18291;s:5:"title";s:47:"Grill Restaurant Food Delivery &#8211; Business";s:9:"thumbnail";s:89:"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png";s:12:"tmpl_created";i:1614767830;s:6:"author";s:9:"Elementor";s:3:"url";s:132:"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:79:"["Delivery","Delivery Service","Fast Food","Food","Landing Pages","Restaurant"]";s:10:"menu_order";i:52;s:16:"popularity_index";i:819;s:11:"trend_index";i:685;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:277;a:15:{s:2:"id";i:13199;s:5:"title";s:29:"Interior Design &#8211; About";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/04/About.png";s:12:"tmpl_created";i:1586148666;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/interior-design-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:30:"["Business","interior design"]";s:10:"menu_order";i:52;s:16:"popularity_index";i:316;s:11:"trend_index";i:334;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:278;a:15:{s:2:"id";i:5315;s:5:"title";s:10:"Clients 12";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png";s:12:"tmpl_created";i:1520443486;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/clients-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"clients";s:4:"tags";s:11:"["clients"]";s:10:"menu_order";i:52;s:16:"popularity_index";i:485;s:11:"trend_index";i:263;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:279;a:15:{s:2:"id";i:18340;s:5:"title";s:30:"Restaurant &#8211; Coming Soon";s:9:"thumbnail";s:98:"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png";s:12:"tmpl_created";i:1614772183;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:16:"Coming Soon Page";s:4:"tags";s:51:"["Coming Soon","Food","Landing Pages","Restaurant"]";s:10:"menu_order";i:53;s:16:"popularity_index";i:810;s:11:"trend_index";i:809;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:280;a:15:{s:2:"id";i:13214;s:5:"title";s:32:"Interior Design &#8211; Projects";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg";s:12:"tmpl_created";i:1586148672;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/interior-design-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:30:"["Business","interior design"]";s:10:"menu_order";i:53;s:16:"popularity_index";i:367;s:11:"trend_index";i:323;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:281;a:15:{s:2:"id";i:5333;s:5:"title";s:10:"Clients 13";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png";s:12:"tmpl_created";i:1520443489;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/clients-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"clients";s:4:"tags";s:11:"["clients"]";s:10:"menu_order";i:53;s:16:"popularity_index";i:234;s:11:"trend_index";i:128;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:282;a:15:{s:2:"id";i:17480;s:5:"title";s:42:"At-home Massage Therapist &#8211; Business";s:9:"thumbnail";s:86:"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg";s:12:"tmpl_created";i:1612879264;s:6:"author";s:9:"Elementor";s:3:"url";s:127:"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:60:"["Business","Health","Landing Pages","Services","Therapist"]";s:10:"menu_order";i:54;s:16:"popularity_index";i:856;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:283;a:15:{s:2:"id";i:13229;s:5:"title";s:31:"Interior Design &#8211; Contact";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png";s:12:"tmpl_created";i:1586148677;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/interior-design-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:30:"["Business","interior design"]";s:10:"menu_order";i:54;s:16:"popularity_index";i:395;s:11:"trend_index";i:337;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:284;a:15:{s:2:"id";i:5389;s:5:"title";s:10:"Clients 14";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png";s:12:"tmpl_created";i:1520443501;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/clients-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"clients";s:4:"tags";s:11:"["clients"]";s:10:"menu_order";i:54;s:16:"popularity_index";i:407;s:11:"trend_index";i:307;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:285;a:15:{s:2:"id";i:10005;s:5:"title";s:38:"Fly In | Promotion | Spa | Body Lotion";s:9:"thumbnail";s:79:"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png";s:12:"tmpl_created";i:1547844909;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:54;s:16:"popularity_index";i:755;s:11:"trend_index";i:760;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:286;a:15:{s:2:"id";i:10424;s:5:"title";s:21:"Fly In | Announcement";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png";s:12:"tmpl_created";i:1547961866;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:55;s:16:"popularity_index";i:677;s:11:"trend_index";i:753;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:287;a:15:{s:2:"id";i:18317;s:5:"title";s:26:"Insurance &#8211; Business";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png";s:12:"tmpl_created";i:1614769488;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/lp/insurance-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:61:"["Business","Family","Financial","Insurance","Landing Pages"]";s:10:"menu_order";i:55;s:16:"popularity_index";i:870;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:288;a:15:{s:2:"id";i:12948;s:5:"title";s:29:"Photography &#8211; Home Page";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png";s:12:"tmpl_created";i:1582093442;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/photography-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:27:"["Photography","portfolio"]";s:10:"menu_order";i:55;s:16:"popularity_index";i:241;s:11:"trend_index";i:201;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:289;a:15:{s:2:"id";i:5298;s:5:"title";s:10:"Clients 15";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png";s:12:"tmpl_created";i:1520443482;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/clients-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"clients";s:4:"tags";s:11:"["clients"]";s:10:"menu_order";i:55;s:16:"popularity_index";i:465;s:11:"trend_index";i:520;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:290;a:15:{s:2:"id";i:9975;s:5:"title";s:24:"Fly In | Promotion | App";s:9:"thumbnail";s:84:"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png";s:12:"tmpl_created";i:1547842284;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:55;s:16:"popularity_index";i:774;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:291;a:15:{s:2:"id";i:17401;s:5:"title";s:40:"Conference Thank You Page &#8211; Events";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png";s:12:"tmpl_created";i:1612724753;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Thank You Page";s:4:"tags";s:59:"["Conference","Event","Events","Landing Pages","Thank You"]";s:10:"menu_order";i:56;s:16:"popularity_index";i:799;s:11:"trend_index";i:540;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:292;a:15:{s:2:"id";i:12798;s:5:"title";s:25:"Photography &#8211; About";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png";s:12:"tmpl_created";i:1582093446;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/photography-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:27:"["Photography","portfolio"]";s:10:"menu_order";i:56;s:16:"popularity_index";i:499;s:11:"trend_index";i:374;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:293;a:15:{s:2:"id";i:5381;s:5:"title";s:10:"Clients 16";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png";s:12:"tmpl_created";i:1520443499;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/clients-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"clients";s:4:"tags";s:11:"["clients"]";s:10:"menu_order";i:56;s:16:"popularity_index";i:198;s:11:"trend_index";i:168;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:294;a:15:{s:2:"id";i:10067;s:5:"title";s:31:"Fly In | Announcement | Cookies";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png";s:12:"tmpl_created";i:1547848075;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/popups/fly-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:56;s:16:"popularity_index";i:582;s:11:"trend_index";i:619;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:295;a:15:{s:2:"id";i:17368;s:5:"title";s:38:"Real Estate Agency &#8211; Real-Estate";s:9:"thumbnail";s:84:"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png";s:12:"tmpl_created";i:1612711814;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:11:"Real Estate";s:4:"tags";s:73:"["Landing Pages","listing","Real estate","Realestate","realtor","realty"]";s:10:"menu_order";i:57;s:16:"popularity_index";i:858;s:11:"trend_index";i:777;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:296;a:15:{s:2:"id";i:12868;s:5:"title";s:27:"Photography &#8211; Contact";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png";s:12:"tmpl_created";i:1582093450;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/photography-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:27:"["Photography","portfolio"]";s:10:"menu_order";i:57;s:16:"popularity_index";i:531;s:11:"trend_index";i:350;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:297;a:15:{s:2:"id";i:5357;s:5:"title";s:9:"Clients 2";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png";s:12:"tmpl_created";i:1520443495;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/clients-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"clients";s:4:"tags";s:11:"["clients"]";s:10:"menu_order";i:57;s:16:"popularity_index";i:341;s:11:"trend_index";i:232;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:298;a:15:{s:2:"id";i:17423;s:5:"title";s:57:"Volunteer Calls Thank You Page &#8211; Social Involvement";s:9:"thumbnail";s:80:"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg";s:12:"tmpl_created";i:1612726058;s:6:"author";s:9:"Elementor";s:3:"url";s:142:"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Thank You Page";s:4:"tags";s:62:"["Care","Involvement","Landing Pages","Thank You","Volunteer"]";s:10:"menu_order";i:58;s:16:"popularity_index";i:857;s:11:"trend_index";i:818;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:299;a:15:{s:2:"id";i:13056;s:5:"title";s:28:"Photography &#8211; Wildlife";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png";s:12:"tmpl_created";i:1582093454;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/photography-wildlife/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:27:"["Photography","portfolio"]";s:10:"menu_order";i:58;s:16:"popularity_index";i:579;s:11:"trend_index";i:656;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:300;a:15:{s:2:"id";i:5290;s:5:"title";s:9:"Clients 3";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png";s:12:"tmpl_created";i:1520443480;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/clients-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"clients";s:4:"tags";s:11:"["clients"]";s:10:"menu_order";i:58;s:16:"popularity_index";i:545;s:11:"trend_index";i:502;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:301;a:15:{s:2:"id";i:10329;s:5:"title";s:25:"Fly In | Sale | Promotion";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png";s:12:"tmpl_created";i:1547893478;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:59;s:16:"popularity_index";i:781;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:302;a:15:{s:2:"id";i:17409;s:5:"title";s:37:"Webinar Thank You Page &#8211; Events";s:9:"thumbnail";s:84:"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png";s:12:"tmpl_created";i:1612725644;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Thank You Page";s:4:"tags";s:56:"["Event","Events","Landing Pages","Thank You","Webinar"]";s:10:"menu_order";i:59;s:16:"popularity_index";i:868;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:303;a:15:{s:2:"id";i:12922;s:5:"title";s:37:"Photography &#8211; Glowing Jellyfish";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png";s:12:"tmpl_created";i:1582093457;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:27:"["Photography","portfolio"]";s:10:"menu_order";i:59;s:16:"popularity_index";i:628;s:11:"trend_index";i:532;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:304;a:15:{s:2:"id";i:5266;s:5:"title";s:9:"Clients 4";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png";s:12:"tmpl_created";i:1520443474;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/clients-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"clients";s:4:"tags";s:11:"["clients"]";s:10:"menu_order";i:59;s:16:"popularity_index";i:95;s:11:"trend_index";i:134;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:305;a:15:{s:2:"id";i:17258;s:5:"title";s:32:"Beauty Product &#8211; eCommerce";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png";s:12:"tmpl_created";i:1610903153;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:38:"["beauty","Ecommerce","Landing Pages"]";s:10:"menu_order";i:60;s:16:"popularity_index";i:797;s:11:"trend_index";i:703;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:306;a:15:{s:2:"id";i:12875;s:5:"title";s:36:"Photography &#8211; Fluttering Birds";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png";s:12:"tmpl_created";i:1582093461;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/photography-fluttering-birds/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:27:"["Photography","portfolio"]";s:10:"menu_order";i:60;s:16:"popularity_index";i:693;s:11:"trend_index";i:766;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:307;a:15:{s:2:"id";i:9650;s:5:"title";s:36:"Fly In | Register | Subscribe | Sale";s:9:"thumbnail";s:86:"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png";s:12:"tmpl_created";i:1547007598;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:60;s:16:"popularity_index";i:771;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:308;a:15:{s:2:"id";i:5275;s:5:"title";s:9:"Clients 5";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png";s:12:"tmpl_created";i:1520443476;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/clients-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"clients";s:4:"tags";s:11:"["clients"]";s:10:"menu_order";i:60;s:16:"popularity_index";i:334;s:11:"trend_index";i:321;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:309;a:15:{s:2:"id";i:17435;s:5:"title";s:39:"Gym &#8211; App Service &#8211; Product";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png";s:12:"tmpl_created";i:1612726462;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/lp/gym-app-service-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:7:"Product";s:4:"tags";s:58:"["App","Fitness","Gym","Health","Landing Pages","Product"]";s:10:"menu_order";i:61;s:16:"popularity_index";i:767;s:11:"trend_index";i:577;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:310;a:15:{s:2:"id";i:12962;s:5:"title";s:26:"Photography &#8211; Nature";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png";s:12:"tmpl_created";i:1582093465;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/photography-nature/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:27:"["Photography","portfolio"]";s:10:"menu_order";i:61;s:16:"popularity_index";i:592;s:11:"trend_index";i:778;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:311;a:15:{s:2:"id";i:5349;s:5:"title";s:9:"Clients 7";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png";s:12:"tmpl_created";i:1520443493;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/clients-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"clients";s:4:"tags";s:11:"["clients"]";s:10:"menu_order";i:61;s:16:"popularity_index";i:233;s:11:"trend_index";i:92;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:312;a:15:{s:2:"id";i:17111;s:5:"title";s:33:"Sunglasses Sale &#8211; eCommerce";s:9:"thumbnail";s:86:"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg";s:12:"tmpl_created";i:1610632408;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:59:"["Ecommerce","Fashion","Landing Pages","Sale","Sunglasses"]";s:10:"menu_order";i:62;s:16:"popularity_index";i:812;s:11:"trend_index";i:732;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:313;a:15:{s:2:"id";i:12833;s:5:"title";s:38:"Photography &#8211; Blossoming Flowers";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png";s:12:"tmpl_created";i:1582093469;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/photography-blossoming-flowers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:27:"["Photography","portfolio"]";s:10:"menu_order";i:62;s:16:"popularity_index";i:597;s:11:"trend_index";i:750;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:314;a:15:{s:2:"id";i:5324;s:5:"title";s:9:"Clients 8";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png";s:12:"tmpl_created";i:1520443488;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/clients-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"clients";s:4:"tags";s:11:"["clients"]";s:10:"menu_order";i:62;s:16:"popularity_index";i:526;s:11:"trend_index";i:381;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:315;a:15:{s:2:"id";i:10200;s:5:"title";s:33:"Full Screen | Content Lock | Wine";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png";s:12:"tmpl_created";i:1548055635;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:63;s:16:"popularity_index";i:719;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:316;a:15:{s:2:"id";i:17223;s:5:"title";s:25:"Fashion &#8211; eCommerce";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png";s:12:"tmpl_created";i:1610902553;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:29:"["Ecommerce","Landing Pages"]";s:10:"menu_order";i:63;s:16:"popularity_index";i:808;s:11:"trend_index";i:745;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:317;a:15:{s:2:"id";i:12898;s:5:"title";s:36:"Photography &#8211; Forest Mushrooms";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png";s:12:"tmpl_created";i:1582093473;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/photography-forest-mushrooms/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:27:"["Photography","portfolio"]";s:10:"menu_order";i:63;s:16:"popularity_index";i:667;s:11:"trend_index";i:649;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:318;a:15:{s:2:"id";i:5368;s:5:"title";s:9:"Clients 9";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png";s:12:"tmpl_created";i:1520443497;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/clients-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"clients";s:4:"tags";s:11:"["clients"]";s:10:"menu_order";i:63;s:16:"popularity_index";i:253;s:11:"trend_index";i:273;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:319;a:15:{s:2:"id";i:10287;s:5:"title";s:34:"Full Screen | Register | Subscribe";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png";s:12:"tmpl_created";i:1547994301;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/popups/full-screen-login-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:64;s:16:"popularity_index";i:602;s:11:"trend_index";i:439;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:320;a:15:{s:2:"id";i:17017;s:5:"title";s:28:"Shoes Sale &#8211; eCommerce";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg";s:12:"tmpl_created";i:1610535361;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:55:"["Discount","Ecommerce","Landing Pages","Sale","Shoes"]";s:10:"menu_order";i:64;s:16:"popularity_index";i:803;s:11:"trend_index";i:642;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:321;a:15:{s:2:"id";i:4436;s:5:"title";s:11:"Contact  16";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png";s:12:"tmpl_created";i:1520443293;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/contact-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:11:"["contact"]";s:10:"menu_order";i:64;s:16:"popularity_index";i:161;s:11:"trend_index";i:68;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:322;a:15:{s:2:"id";i:12994;s:5:"title";s:24:"Photography &#8211; Pets";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png";s:12:"tmpl_created";i:1582093477;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/photography-pets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:27:"["Photography","portfolio"]";s:10:"menu_order";i:64;s:16:"popularity_index";i:612;s:11:"trend_index";i:508;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:323;a:15:{s:2:"id";i:17301;s:5:"title";s:53:"Personal Chef &#8211; Thank You Page &#8211; Business";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg";s:12:"tmpl_created";i:1610903622;s:6:"author";s:9:"Elementor";s:3:"url";s:130:"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Thank You Page";s:4:"tags";s:43:"["Chef","Food","Landing Pages","Thank You"]";s:10:"menu_order";i:65;s:16:"popularity_index";i:823;s:11:"trend_index";i:754;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:324;a:15:{s:2:"id";i:4420;s:5:"title";s:9:"Contact 1";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png";s:12:"tmpl_created";i:1520443289;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/contact-1-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:11:"["contact"]";s:10:"menu_order";i:65;s:16:"popularity_index";i:196;s:11:"trend_index";i:127;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:325;a:15:{s:2:"id";i:12805;s:5:"title";s:37:"Photography &#8211; B&amp;W Portraits";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png";s:12:"tmpl_created";i:1582093481;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/photography-bw-portraits/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:27:"["Photography","portfolio"]";s:10:"menu_order";i:65;s:16:"popularity_index";i:695;s:11:"trend_index";i:735;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:326;a:15:{s:2:"id";i:5836;s:5:"title";s:10:"Contact 10";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png";s:12:"tmpl_created";i:1520443597;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/contact-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:11:"["contact"]";s:10:"menu_order";i:66;s:16:"popularity_index";i:114;s:11:"trend_index";i:76;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:327;a:15:{s:2:"id";i:17313;s:5:"title";s:60:"Development Course  &#8211; Thank You Page &#8211; Education";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png";s:12:"tmpl_created";i:1610903776;s:6:"author";s:9:"Elementor";s:3:"url";s:136:"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Thank You Page";s:4:"tags";s:57:"["Course Online","Education","Landing Pages","Thank You"]";s:10:"menu_order";i:66;s:16:"popularity_index";i:834;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:328;a:15:{s:2:"id";i:13031;s:5:"title";s:33:"Photography &#8211; Vivid Parrots";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png";s:12:"tmpl_created";i:1582093484;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/photography-vivid-parrots/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:27:"["Photography","portfolio"]";s:10:"menu_order";i:66;s:16:"popularity_index";i:660;s:11:"trend_index";i:643;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:329;a:15:{s:2:"id";i:9889;s:5:"title";s:28:"Full Screen | Login | Cactus";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png";s:12:"tmpl_created";i:1547838722;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/popups/full-screen-login/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:66;s:16:"popularity_index";i:743;s:11:"trend_index";i:713;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:330;a:15:{s:2:"id";i:5844;s:5:"title";s:10:"Contact 11";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png";s:12:"tmpl_created";i:1520443599;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/contact-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:11:"["contact"]";s:10:"menu_order";i:67;s:16:"popularity_index";i:289;s:11:"trend_index";i:313;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:331;a:15:{s:2:"id";i:16192;s:5:"title";s:30:"Management App &#8211; Product";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg";s:12:"tmpl_created";i:1607866881;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/lp/management-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:7:"Product";s:4:"tags";s:33:"["App","Landing Pages","Product"]";s:10:"menu_order";i:67;s:16:"popularity_index";i:827;s:11:"trend_index";i:765;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:332;a:15:{s:2:"id";i:12621;s:5:"title";s:26:"Magazine &#8211; Home Page";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png";s:12:"tmpl_created";i:1579060604;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/magazine-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:19:"["Blog","Magazine"]";s:10:"menu_order";i:67;s:16:"popularity_index";i:167;s:11:"trend_index";i:121;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:333;a:15:{s:2:"id";i:10077;s:5:"title";s:29:"Fly In | Register | Subscribe";s:9:"thumbnail";s:86:"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png";s:12:"tmpl_created";i:1547848197;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:67;s:16:"popularity_index";i:540;s:11:"trend_index";i:574;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:334;a:15:{s:2:"id";i:15839;s:5:"title";s:29:"Chiropractor &#8211; Business";s:9:"thumbnail";s:86:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png";s:12:"tmpl_created";i:1607855449;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/lp/chiropractor-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:37:"["Business","Health","Landing Pages"]";s:10:"menu_order";i:68;s:16:"popularity_index";i:828;s:11:"trend_index";i:709;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:335;a:15:{s:2:"id";i:12352;s:5:"title";s:24:"Travel &#8211; Home Page";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png";s:12:"tmpl_created";i:1575960464;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/travel-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["Tours","Travel"]";s:10:"menu_order";i:68;s:16:"popularity_index";i:291;s:11:"trend_index";i:194;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:336;a:15:{s:2:"id";i:4476;s:5:"title";s:10:"Contact 15";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png";s:12:"tmpl_created";i:1520443303;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/contact-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:18:"["contact","form"]";s:10:"menu_order";i:68;s:16:"popularity_index";i:229;s:11:"trend_index";i:187;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:337;a:15:{s:2:"id";i:15827;s:5:"title";s:32:"Creative Agency &#8211; Business";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png";s:12:"tmpl_created";i:1607855280;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/lp/creative-agency-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:168:"["Agency","bootstrap","Business","corporate","Landing Pages","Marketing Campaign","Marketing Landing Page","Product launch","software","Startup","startup landing page"]";s:10:"menu_order";i:69;s:16:"popularity_index";i:748;s:11:"trend_index";i:363;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:338;a:15:{s:2:"id";i:10362;s:5:"title";s:32:"Full Screen | Login | Restaurant";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png";s:12:"tmpl_created";i:1548056253;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/popups/full-screen-login-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:69;s:16:"popularity_index";i:587;s:11:"trend_index";i:560;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:339;a:15:{s:2:"id";i:12400;s:5:"title";s:20:"Travel &#8211; About";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2019/12/About.png";s:12:"tmpl_created";i:1575960441;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/travel-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["Tours","Travel"]";s:10:"menu_order";i:69;s:16:"popularity_index";i:444;s:11:"trend_index";i:445;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:340;a:15:{s:2:"id";i:5214;s:5:"title";s:10:"Contact 16";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png";s:12:"tmpl_created";i:1520443462;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/blocks/contact-16-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:18:"["contact","form"]";s:10:"menu_order";i:69;s:16:"popularity_index";i:194;s:11:"trend_index";i:106;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:341;a:15:{s:2:"id";i:16120;s:5:"title";s:37:"Life coach Tom &#8211; Online Service";s:9:"thumbnail";s:80:"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png";s:12:"tmpl_created";i:1607865812;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/lp/life-coach-tom-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:30:"["Consulting","Landing Pages"]";s:10:"menu_order";i:70;s:16:"popularity_index";i:818;s:11:"trend_index";i:796;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:342;a:15:{s:2:"id";i:12479;s:5:"title";s:20:"Travel &#8211; Tours";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png";s:12:"tmpl_created";i:1575960474;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/travel-tours/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["Tours","Travel"]";s:10:"menu_order";i:70;s:16:"popularity_index";i:539;s:11:"trend_index";i:726;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:343;a:15:{s:2:"id";i:5230;s:5:"title";s:10:"Contact 17";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png";s:12:"tmpl_created";i:1520443466;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/contact-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:18:"["contact","form"]";s:10:"menu_order";i:70;s:16:"popularity_index";i:339;s:11:"trend_index";i:335;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:344;a:15:{s:2:"id";i:16059;s:5:"title";s:34:"Melbourne Conference &#8211; Event";s:9:"thumbnail";s:84:"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg";s:12:"tmpl_created";i:1607864236;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/lp/melbourne-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Events";s:4:"tags";s:25:"["Event","Landing Pages"]";s:10:"menu_order";i:71;s:16:"popularity_index";i:841;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:345;a:15:{s:2:"id";i:10454;s:5:"title";s:29:"Full Screen | Promotion | App";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png";s:12:"tmpl_created";i:1548056896;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:71;s:16:"popularity_index";i:776;s:11:"trend_index";i:804;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:346;a:15:{s:2:"id";i:12466;s:5:"title";s:27:"Travel &#8211; Testimonials";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png";s:12:"tmpl_created";i:1575960469;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/travel-testimonials/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["Tours","Travel"]";s:10:"menu_order";i:71;s:16:"popularity_index";i:527;s:11:"trend_index";i:481;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:347;a:15:{s:2:"id";i:5257;s:5:"title";s:10:"Contact 18";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png";s:12:"tmpl_created";i:1520443472;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/contact-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:8:"["form"]";s:10:"menu_order";i:71;s:16:"popularity_index";i:438;s:11:"trend_index";i:490;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:348;a:15:{s:2:"id";i:5820;s:5:"title";s:9:"Contact 2";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png";s:12:"tmpl_created";i:1520443593;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/contact-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:11:"["contact"]";s:10:"menu_order";i:72;s:16:"popularity_index";i:183;s:11:"trend_index";i:357;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:349;a:15:{s:2:"id";i:16073;s:5:"title";s:56:"International Women&#8217;s Day Conference &#8211; Event";s:9:"thumbnail";s:109:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png";s:12:"tmpl_created";i:1607864979;s:6:"author";s:9:"Elementor";s:3:"url";s:134:"https://library.elementor.com/lp/international-womens-day-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Events";s:4:"tags";s:25:"["Event","Landing Pages"]";s:10:"menu_order";i:72;s:16:"popularity_index";i:865;s:11:"trend_index";i:789;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:350;a:15:{s:2:"id";i:12443;s:5:"title";s:22:"Travel &#8211; Gallery";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png";s:12:"tmpl_created";i:1575960459;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/travel-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["Tours","Travel"]";s:10:"menu_order";i:72;s:16:"popularity_index";i:467;s:11:"trend_index";i:501;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:351;a:15:{s:2:"id";i:9803;s:5:"title";s:41:"Full Screen | Register | Contact | Meetup";s:9:"thumbnail";s:80:"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png";s:12:"tmpl_created";i:1547831298;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:72;s:16:"popularity_index";i:701;s:11:"trend_index";i:808;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:352;a:15:{s:2:"id";i:10611;s:5:"title";s:18:"Full Screen | Sale";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png";s:12:"tmpl_created";i:1547968868;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/popups/full-screen-sale/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:73;s:16:"popularity_index";i:779;s:11:"trend_index";i:792;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:353;a:15:{s:2:"id";i:16085;s:5:"title";s:29:"Tech Conference &#8211; Event";s:9:"thumbnail";s:89:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png";s:12:"tmpl_created";i:1607865227;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/lp/tech-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Events";s:4:"tags";s:25:"["Event","Landing Pages"]";s:10:"menu_order";i:73;s:16:"popularity_index";i:851;s:11:"trend_index";i:747;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:354;a:15:{s:2:"id";i:4411;s:5:"title";s:9:"Contact 3";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png";s:12:"tmpl_created";i:1520443287;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/contact-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:11:"["contact"]";s:10:"menu_order";i:73;s:16:"popularity_index";i:113;s:11:"trend_index";i:217;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:355;a:15:{s:2:"id";i:12431;s:5:"title";s:18:"Travel &#8211; FAQ";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png";s:12:"tmpl_created";i:1575960453;s:6:"author";s:9:"Elementor";s:3:"url";s:100:"https://library.elementor.com/travel-faq/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["Tours","Travel"]";s:10:"menu_order";i:73;s:16:"popularity_index";i:501;s:11:"trend_index";i:387;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:356;a:15:{s:2:"id";i:5828;s:5:"title";s:9:"Contact 3";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png";s:12:"tmpl_created";i:1520443595;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/contact-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:11:"["contact"]";s:10:"menu_order";i:74;s:16:"popularity_index";i:312;s:11:"trend_index";i:495;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:357;a:15:{s:2:"id";i:16102;s:5:"title";s:38:"Environmental Conference &#8211; Event";s:9:"thumbnail";s:99:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png";s:12:"tmpl_created";i:1607865473;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/lp/environmental-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Events";s:4:"tags";s:25:"["Event","Landing Pages"]";s:10:"menu_order";i:74;s:16:"popularity_index";i:833;s:11:"trend_index";i:772;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:358;a:15:{s:2:"id";i:12421;s:5:"title";s:27:"Travel &#8211; Contact Page";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png";s:12:"tmpl_created";i:1575960445;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/travel-contact-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["Tours","Travel"]";s:10:"menu_order";i:74;s:16:"popularity_index";i:571;s:11:"trend_index";i:536;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:359;a:15:{s:2:"id";i:10508;s:5:"title";s:25:"Full Screen | Welcome Mat";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png";s:12:"tmpl_created";i:1547964711;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:75;s:16:"popularity_index";i:711;s:11:"trend_index";i:793;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:360;a:15:{s:2:"id";i:15931;s:5:"title";s:37:"Tokyo Design Conference &#8211; Event";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png";s:12:"tmpl_created";i:1607861271;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/lp/tokyo-design-conference-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Events";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:75;s:16:"popularity_index";i:815;s:11:"trend_index";i:644;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:361;a:15:{s:2:"id";i:11763;s:5:"title";s:27:"Portfolio &#8211; Home Page";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png";s:12:"tmpl_created";i:1569428959;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/portfolio-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:34:"["creative portfolio","portfolio"]";s:10:"menu_order";i:75;s:16:"popularity_index";i:280;s:11:"trend_index";i:241;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:362;a:15:{s:2:"id";i:4428;s:5:"title";s:9:"Contact 4";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png";s:12:"tmpl_created";i:1520443291;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/contact-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:11:"["contact"]";s:10:"menu_order";i:75;s:16:"popularity_index";i:118;s:11:"trend_index";i:131;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:363;a:15:{s:2:"id";i:16412;s:5:"title";s:36:"Photography Coupon &#8211; eCommerce";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png";s:12:"tmpl_created";i:1607869919;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/lp/photography-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:52:"["Coupon","Ecommerce","Landing Pages","Photography"]";s:10:"menu_order";i:76;s:16:"popularity_index";i:862;s:11:"trend_index";i:749;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:364;a:15:{s:2:"id";i:11781;s:5:"title";s:23:"Portfolio &#8211; About";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png";s:12:"tmpl_created";i:1569428955;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/portfolio-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:34:"["creative portfolio","portfolio"]";s:10:"menu_order";i:76;s:16:"popularity_index";i:349;s:11:"trend_index";i:290;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:365;a:15:{s:2:"id";i:4444;s:5:"title";s:9:"Contact 5";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png";s:12:"tmpl_created";i:1520443295;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/contact-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:11:"["contact"]";s:10:"menu_order";i:76;s:16:"popularity_index";i:84;s:11:"trend_index";i:93;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:366;a:15:{s:2:"id";i:9934;s:5:"title";s:38:"Full Screen | Welcome Mat | Teddy Bear";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png";s:12:"tmpl_created";i:1547841787;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:76;s:16:"popularity_index";i:681;s:11:"trend_index";i:752;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:367;a:15:{s:2:"id";i:16183;s:5:"title";s:32:"Luxury Homes &#8211; Real Estate";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png";s:12:"tmpl_created";i:1607866726;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/lp/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:11:"Real Estate";s:4:"tags";s:31:"["Landing Pages","Real estate"]";s:10:"menu_order";i:77;s:16:"popularity_index";i:835;s:11:"trend_index";i:768;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:368;a:15:{s:2:"id";i:11793;s:5:"title";s:26:"Portfolio &#8211; Projects";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png";s:12:"tmpl_created";i:1569428951;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/portfolio-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:34:"["creative portfolio","portfolio"]";s:10:"menu_order";i:77;s:16:"popularity_index";i:448;s:11:"trend_index";i:467;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:369;a:15:{s:2:"id";i:4492;s:5:"title";s:9:"Contact 5";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png";s:12:"tmpl_created";i:1520443307;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/contact-5-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:11:"["contact"]";s:10:"menu_order";i:77;s:16:"popularity_index";i:37;s:11:"trend_index";i:31;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:370;a:15:{s:2:"id";i:16420;s:5:"title";s:36:"Spring Sale Coupon &#8211; eCommerce";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png";s:12:"tmpl_created";i:1607899243;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/lp/spring-sale-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:55:"["Coupon","Ecommerce","Fashion","Landing Pages","Sale"]";s:10:"menu_order";i:78;s:16:"popularity_index";i:852;s:11:"trend_index";i:756;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:371;a:15:{s:2:"id";i:11800;s:5:"title";s:25:"Portfolio &#8211; Contact";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png";s:12:"tmpl_created";i:1569428946;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/portfolio-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:34:"["creative portfolio","portfolio"]";s:10:"menu_order";i:78;s:16:"popularity_index";i:494;s:11:"trend_index";i:449;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:372;a:15:{s:2:"id";i:4452;s:5:"title";s:9:"Contact 6";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png";s:12:"tmpl_created";i:1520443296;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/contact-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:11:"["contact"]";s:10:"menu_order";i:78;s:16:"popularity_index";i:139;s:11:"trend_index";i:150;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:373;a:15:{s:2:"id";i:9709;s:5:"title";s:25:"Full Screen | Welcome Mat";s:9:"thumbnail";s:95:"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png";s:12:"tmpl_created";i:1547023834;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:11:"full screen";s:4:"tags";s:2:"[]";s:10:"menu_order";i:78;s:16:"popularity_index";i:728;s:11:"trend_index";i:728;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:374;a:15:{s:2:"id";i:16427;s:5:"title";s:34:"Dream Car Coupon &#8211; eCommerce";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png";s:12:"tmpl_created";i:1607934325;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/lp/dream-car-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:53:"["Coupon","Ecommerce","Landing Pages","Offer","Sale"]";s:10:"menu_order";i:79;s:16:"popularity_index";i:863;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:375;a:15:{s:2:"id";i:11163;s:5:"title";s:32:"Digital Agency &#8211; Home Page";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png";s:12:"tmpl_created";i:1564641877;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/digital-agency-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:30:"["Digital Agency","Marketing"]";s:10:"menu_order";i:79;s:16:"popularity_index";i:57;s:11:"trend_index";i:32;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:376;a:15:{s:2:"id";i:4468;s:5:"title";s:9:"Contact 7";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png";s:12:"tmpl_created";i:1520443301;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/contact-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:18:"["contact","form"]";s:10:"menu_order";i:79;s:16:"popularity_index";i:127;s:11:"trend_index";i:72;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:377;a:15:{s:2:"id";i:9671;s:5:"title";s:34:"Hello Bar | Announcement | Cookies";s:9:"thumbnail";s:90:"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png";s:12:"tmpl_created";i:1547010259;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:9:"hello bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:79;s:16:"popularity_index";i:639;s:11:"trend_index";i:598;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:378;a:15:{s:2:"id";i:10234;s:5:"title";s:38:"Hello Bar | Announcement | Maintenance";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png";s:12:"tmpl_created";i:1548055049;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:9:"hello bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:80;s:16:"popularity_index";i:746;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:379;a:15:{s:2:"id";i:16433;s:5:"title";s:42:"Leshnik Mega Sale Coupon &#8211; eCommerce";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png";s:12:"tmpl_created";i:1607934474;s:6:"author";s:9:"Elementor";s:3:"url";s:127:"https://library.elementor.com/lp/leshnik-mega-sale-coupon-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:45:"["Coupon","Ecommerce","Landing Pages","Sale"]";s:10:"menu_order";i:80;s:16:"popularity_index";i:867;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:380;a:15:{s:2:"id";i:4484;s:5:"title";s:9:"Contact 8";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png";s:12:"tmpl_created";i:1520443305;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/contact-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:18:"["contact","form"]";s:10:"menu_order";i:80;s:16:"popularity_index";i:328;s:11:"trend_index";i:260;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:381;a:15:{s:2:"id";i:9139;s:5:"title";s:25:"Homepage &#8211; Business";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png";s:12:"tmpl_created";i:1532949924;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/homepage-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:168:"["Agency","bootstrap","Business","corporate","Landing Pages","Marketing Campaign","Marketing Landing Page","Product launch","software","Startup","startup landing page"]";s:10:"menu_order";i:80;s:16:"popularity_index";i:7;s:11:"trend_index";i:7;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:382;a:15:{s:2:"id";i:15986;s:5:"title";s:40:"From Freelance to Business &#8211; Ebook";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png";s:12:"tmpl_created";i:1607862915;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/lp/from-freelance-to-business-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:5:"Ebook";s:4:"tags";s:143:"["App","author","book","brochure","download","e-book","ebook","Landing Pages","Marketing","Product","publisher","sell online","seo","showcase"]";s:10:"menu_order";i:81;s:16:"popularity_index";i:837;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:383;a:15:{s:2:"id";i:1634;s:5:"title";s:33:"Landing Page &#8211; Chiropractor";s:9:"thumbnail";s:86:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png";s:12:"tmpl_created";i:1494352119;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:81;s:16:"popularity_index";i:223;s:11:"trend_index";i:360;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:384;a:15:{s:2:"id";i:4460;s:5:"title";s:9:"Contact 9";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png";s:12:"tmpl_created";i:1520443298;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/contact-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"contact";s:4:"tags";s:11:"["contact"]";s:10:"menu_order";i:81;s:16:"popularity_index";i:99;s:11:"trend_index";i:80;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:385;a:15:{s:2:"id";i:16002;s:5:"title";s:30:"Architect Manual &#8211; Ebook";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png";s:12:"tmpl_created";i:1607863075;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/lp/architect-manual-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:5:"Ebook";s:4:"tags";s:25:"["Ebook","Landing Pages"]";s:10:"menu_order";i:82;s:16:"popularity_index";i:836;s:11:"trend_index";i:827;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:386;a:15:{s:2:"id";i:5558;s:5:"title";s:5:"CTA 1";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png";s:12:"tmpl_created";i:1520520684;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/cta-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:82;s:16:"popularity_index";i:129;s:11:"trend_index";i:69;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:387;a:15:{s:2:"id";i:12143;s:5:"title";s:22:"Law Firm &#8211; About";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2019/11/about.png";s:12:"tmpl_created";i:1572847069;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/law-firm-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["Law","Law Firm"]";s:10:"menu_order";i:82;s:16:"popularity_index";i:350;s:11:"trend_index";i:344;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:388;a:15:{s:2:"id";i:16014;s:5:"title";s:23:"Good Life &#8211; Ebook";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png";s:12:"tmpl_created";i:1607863305;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/lp/good-life-ebook/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:5:"Ebook";s:4:"tags";s:25:"["Ebook","Landing Pages"]";s:10:"menu_order";i:83;s:16:"popularity_index";i:807;s:11:"trend_index";i:646;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:389;a:15:{s:2:"id";i:5939;s:5:"title";s:6:"CTA 10";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png";s:12:"tmpl_created";i:1520520760;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:83;s:16:"popularity_index";i:190;s:11:"trend_index";i:118;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:390;a:15:{s:2:"id";i:12091;s:5:"title";s:21:"Law Firm &#8211; Team";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2019/11/team.png";s:12:"tmpl_created";i:1572847113;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/law-firm-team/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["Law","Law Firm"]";s:10:"menu_order";i:83;s:16:"popularity_index";i:318;s:11:"trend_index";i:314;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:391;a:15:{s:2:"id";i:9869;s:5:"title";s:28:"Hello Bar | Promotion | Sale";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png";s:12:"tmpl_created";i:1547837269;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:9:"hello bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:83;s:16:"popularity_index";i:766;s:11:"trend_index";i:820;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:392;a:15:{s:2:"id";i:10539;s:5:"title";s:19:"Hello Bar | Contact";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png";s:12:"tmpl_created";i:1548056994;s:6:"author";s:9:"Elementor";s:3:"url";s:127:"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:9:"hello bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:84;s:16:"popularity_index";i:726;s:11:"trend_index";i:810;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:393;a:15:{s:2:"id";i:16242;s:5:"title";s:37:"Fashion Season Sale &#8211; eCommerce";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg";s:12:"tmpl_created";i:1607867761;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/lp/fashion-season-sale-ecommerce/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:9:"eCommerce";s:4:"tags";s:34:"["Fashion","Landing Pages","Sale"]";s:10:"menu_order";i:84;s:16:"popularity_index";i:813;s:11:"trend_index";i:746;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:394;a:15:{s:2:"id";i:11129;s:5:"title";s:28:"Digital Agency &#8211; About";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png";s:12:"tmpl_created";i:1564641889;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/digital-agency-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:30:"["Digital Agency","Marketing"]";s:10:"menu_order";i:84;s:16:"popularity_index";i:182;s:11:"trend_index";i:166;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:395;a:15:{s:2:"id";i:5930;s:5:"title";s:6:"CTA 11";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png";s:12:"tmpl_created";i:1520520758;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:84;s:16:"popularity_index";i:76;s:11:"trend_index";i:84;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:396;a:15:{s:2:"id";i:16202;s:5:"title";s:39:"Starlight Nation Festival &#8211; Event";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg";s:12:"tmpl_created";i:1607867113;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/lp/starlight-nation-festival-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Events";s:4:"tags";s:25:"["Event","Landing Pages"]";s:10:"menu_order";i:85;s:16:"popularity_index";i:842;s:11:"trend_index";i:770;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:397;a:15:{s:2:"id";i:11572;s:5:"title";s:19:"Gym &#8211; Trainer";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png";s:12:"tmpl_created";i:1567392934;s:6:"author";s:9:"Elementor";s:3:"url";s:101:"https://library.elementor.com/gym-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:7:"["Gym"]";s:10:"menu_order";i:85;s:16:"popularity_index";i:521;s:11:"trend_index";i:590;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:398;a:15:{s:2:"id";i:5921;s:5:"title";s:6:"CTA 12";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png";s:12:"tmpl_created";i:1520520757;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:85;s:16:"popularity_index";i:278;s:11:"trend_index";i:234;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:399;a:15:{s:2:"id";i:16139;s:5:"title";s:37:"Financial Consultant &#8211; Business";s:9:"thumbnail";s:94:"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png";s:12:"tmpl_created";i:1607866334;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/lp/financial-consultant-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:40:"["Consulting","Finance","Landing Pages"]";s:10:"menu_order";i:86;s:16:"popularity_index";i:824;s:11:"trend_index";i:798;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:400;a:15:{s:2:"id";i:1504;s:5:"title";s:33:"Landing Page &#8211; Mobile App 3";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png";s:12:"tmpl_created";i:1494352112;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:86;s:16:"popularity_index";i:174;s:11:"trend_index";i:367;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:401;a:15:{s:2:"id";i:5607;s:5:"title";s:6:"CTA 13";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png";s:12:"tmpl_created";i:1520520695;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:86;s:16:"popularity_index";i:42;s:11:"trend_index";i:11;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:402;a:15:{s:2:"id";i:15822;s:5:"title";s:30:"Family Vacation &#8211; Travel";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png";s:12:"tmpl_created";i:1607855143;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/lp/family-vacation-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Travel";s:4:"tags";s:37:"["Landing Pages","Travel","Vacation"]";s:10:"menu_order";i:87;s:16:"popularity_index";i:773;s:11:"trend_index";i:593;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:403;a:15:{s:2:"id";i:6017;s:5:"title";s:6:"CTA 14";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png";s:12:"tmpl_created";i:1520520331;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:87;s:16:"popularity_index";i:152;s:11:"trend_index";i:122;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:404;a:15:{s:2:"id";i:12133;s:5:"title";s:24:"Law Firm &#8211; Careers";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2019/11/careers.png";s:12:"tmpl_created";i:1572847078;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/law-firm-careers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["Law","Law Firm"]";s:10:"menu_order";i:87;s:16:"popularity_index";i:583;s:11:"trend_index";i:640;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:405;a:15:{s:2:"id";i:15964;s:5:"title";s:31:"Law Convention &#8211; Business";s:9:"thumbnail";s:92:"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png";s:12:"tmpl_created";i:1607862731;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/lp/law-convention-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:36:"["Convention","Landing Pages","Law"]";s:10:"menu_order";i:88;s:16:"popularity_index";i:860;s:11:"trend_index";i:794;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:406;a:15:{s:2:"id";i:5885;s:5:"title";s:6:"CTA 15";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png";s:12:"tmpl_created";i:1520520751;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:88;s:16:"popularity_index";i:274;s:11:"trend_index";i:256;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:407;a:15:{s:2:"id";i:12155;s:5:"title";s:26:"Law Firm &#8211; Home Page";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2019/11/home.png";s:12:"tmpl_created";i:1572847054;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/law-firm-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["Law","Law Firm"]";s:10:"menu_order";i:88;s:16:"popularity_index";i:193;s:11:"trend_index";i:110;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:408;a:15:{s:2:"id";i:15910;s:5:"title";s:38:"Litigation Law Office &#8211; Business";s:9:"thumbnail";s:84:"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png";s:12:"tmpl_created";i:1607860827;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/lp/litigation-law-office-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:32:"["Landing Pages","Law","Office"]";s:10:"menu_order";i:89;s:16:"popularity_index";i:825;s:11:"trend_index";i:719;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:409;a:15:{s:2:"id";i:10147;s:5:"title";s:34:"Hello Bar | Sale | Promotion | Pop";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png";s:12:"tmpl_created";i:1548055522;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:9:"hello bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:89;s:16:"popularity_index";i:775;s:11:"trend_index";i:824;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:410;a:15:{s:2:"id";i:5877;s:5:"title";s:6:"CTA 16";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png";s:12:"tmpl_created";i:1520520749;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:89;s:16:"popularity_index";i:564;s:11:"trend_index";i:677;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:411;a:15:{s:2:"id";i:12080;s:5:"title";s:24:"Law Firm &#8211; Partner";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png";s:12:"tmpl_created";i:1572847120;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/law-firm-partner/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["Law","Law Firm"]";s:10:"menu_order";i:89;s:16:"popularity_index";i:556;s:11:"trend_index";i:471;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:412;a:15:{s:2:"id";i:16025;s:5:"title";s:33:"Conoco Mobile App &#8211; Product";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2017/03/app.png";s:12:"tmpl_created";i:1607863511;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/lp/conoco-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:7:"Product";s:4:"tags";s:27:"["Landing Pages","Product"]";s:10:"menu_order";i:90;s:16:"popularity_index";i:789;s:11:"trend_index";i:698;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:413;a:15:{s:2:"id";i:11074;s:5:"title";s:31:"Digital Agency &#8211; Services";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png";s:12:"tmpl_created";i:1564641872;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/digital-agency-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:30:"["Digital Agency","Marketing"]";s:10:"menu_order";i:90;s:16:"popularity_index";i:163;s:11:"trend_index";i:170;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:414;a:15:{s:2:"id";i:5860;s:5:"title";s:6:"CTA 17";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png";s:12:"tmpl_created";i:1520520746;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:90;s:16:"popularity_index";i:120;s:11:"trend_index";i:63;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:415;a:15:{s:2:"id";i:9923;s:5:"title";s:23:"Slide In | Announcement";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png";s:12:"tmpl_created";i:1547841537;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/popups/slide-in-announcement/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:90;s:16:"popularity_index";i:699;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:416;a:15:{s:2:"id";i:15853;s:5:"title";s:29:"Me Mobile App &#8211; Product";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png";s:12:"tmpl_created";i:1607857451;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/lp/me-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:7:"Product";s:4:"tags";s:27:"["Landing Pages","Product"]";s:10:"menu_order";i:91;s:16:"popularity_index";i:811;s:11:"trend_index";i:704;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:417;a:15:{s:2:"id";i:10117;s:5:"title";s:23:"Slide In | Announcement";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png";s:12:"tmpl_created";i:1548066998;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:91;s:16:"popularity_index";i:727;s:11:"trend_index";i:662;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:418;a:15:{s:2:"id";i:11506;s:5:"title";s:19:"Gym &#8211; Classes";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png";s:12:"tmpl_created";i:1567392930;s:6:"author";s:9:"Elementor";s:3:"url";s:101:"https://library.elementor.com/gym-classes/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:7:"["Gym"]";s:10:"menu_order";i:91;s:16:"popularity_index";i:514;s:11:"trend_index";i:554;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:419;a:15:{s:2:"id";i:5869;s:5:"title";s:6:"CTA 18";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png";s:12:"tmpl_created";i:1520520747;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:91;s:16:"popularity_index";i:345;s:11:"trend_index";i:486;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:420;a:15:{s:2:"id";i:15844;s:5:"title";s:32:"Torel Mobile App &#8211; Product";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png";s:12:"tmpl_created";i:1607856863;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/lp/torel-mobile-app-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:7:"Product";s:4:"tags";s:27:"["Landing Pages","Product"]";s:10:"menu_order";i:92;s:16:"popularity_index";i:822;s:11:"trend_index";i:812;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:421;a:15:{s:2:"id";i:1503;s:5:"title";s:33:"Landing Page &#8211; Mobile App 2";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png";s:12:"tmpl_created";i:1494352113;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:92;s:16:"popularity_index";i:165;s:11:"trend_index";i:191;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:422;a:15:{s:2:"id";i:5542;s:5:"title";s:6:"CTA 19";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png";s:12:"tmpl_created";i:1520520681;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:92;s:16:"popularity_index";i:169;s:11:"trend_index";i:270;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:423;a:15:{s:2:"id";i:9826;s:5:"title";s:33:"Slide In | Announcement | webinar";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png";s:12:"tmpl_created";i:1547835513;s:6:"author";s:9:"Elementor";s:3:"url";s:126:"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:92;s:16:"popularity_index";i:745;s:11:"trend_index";i:831;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:424;a:15:{s:2:"id";i:16041;s:5:"title";s:31:"Nano Mobile App &#8211; Product";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png";s:12:"tmpl_created";i:1607863992;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/lp/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:7:"Product";s:4:"tags";s:27:"["Landing Pages","Product"]";s:10:"menu_order";i:93;s:16:"popularity_index";i:847;s:11:"trend_index";i:723;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:425;a:15:{s:2:"id";i:10478;s:5:"title";s:18:"Slide In | Contact";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png";s:12:"tmpl_created";i:1548056829;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/popups/slide-in-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:93;s:16:"popularity_index";i:595;s:11:"trend_index";i:559;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:426;a:15:{s:2:"id";i:5567;s:5:"title";s:5:"CTA 2";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png";s:12:"tmpl_created";i:1520520685;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/cta-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:93;s:16:"popularity_index";i:143;s:11:"trend_index";i:225;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:427;a:15:{s:2:"id";i:12044;s:5:"title";s:24:"Law Firm &#8211; Contact";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png";s:12:"tmpl_created";i:1572847130;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/law-firm-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["Law","Law Firm"]";s:10:"menu_order";i:93;s:16:"popularity_index";i:437;s:11:"trend_index";i:304;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:428;a:15:{s:2:"id";i:15890;s:5:"title";s:39:"Personal Trainer &#8211; Online Service";s:9:"thumbnail";s:90:"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png";s:12:"tmpl_created";i:1607860512;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/lp/personal-trainer-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Online Service";s:4:"tags";s:35:"["Fitness","Landing Pages","Sport"]";s:10:"menu_order";i:94;s:16:"popularity_index";i:838;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:429;a:15:{s:2:"id";i:5893;s:5:"title";s:6:"CTA 21";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png";s:12:"tmpl_created";i:1520520752;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:94;s:16:"popularity_index";i:259;s:11:"trend_index";i:457;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:430;a:15:{s:2:"id";i:12124;s:5:"title";s:25:"Law Firm &#8211; Services";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2019/11/services.png";s:12:"tmpl_created";i:1572847096;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/law-firm-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["Law","Law Firm"]";s:10:"menu_order";i:94;s:16:"popularity_index";i:433;s:11:"trend_index";i:296;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:431;a:15:{s:2:"id";i:16233;s:5:"title";s:36:"Journey Photography &#8211; Business";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png";s:12:"tmpl_created";i:1607867416;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/lp/journey-photography-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:42:"["Business","Landing Pages","Photography"]";s:10:"menu_order";i:95;s:16:"popularity_index";i:788;s:11:"trend_index";i:594;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:432;a:15:{s:2:"id";i:11056;s:5:"title";s:35:"Digital Agency &#8211; Social Media";s:9:"thumbnail";s:79:"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png";s:12:"tmpl_created";i:1564641867;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/digital-agency-social-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:30:"["Digital Agency","Marketing"]";s:10:"menu_order";i:95;s:16:"popularity_index";i:297;s:11:"trend_index";i:361;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:433;a:15:{s:2:"id";i:5634;s:5:"title";s:6:"CTA 24";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png";s:12:"tmpl_created";i:1520520699;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:95;s:16:"popularity_index";i:188;s:11:"trend_index";i:255;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:434;a:15:{s:2:"id";i:10685;s:5:"title";s:32:"Hello Bar | Register | Subscribe";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png";s:12:"tmpl_created";i:1547974729;s:6:"author";s:9:"Elementor";s:3:"url";s:127:"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:9:"hello bar";s:4:"tags";s:2:"[]";s:10:"menu_order";i:96;s:16:"popularity_index";i:721;s:11:"trend_index";i:814;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:435;a:15:{s:2:"id";i:16162;s:5:"title";s:29:"Private Chef &#8211; Business";s:9:"thumbnail";s:86:"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png";s:12:"tmpl_created";i:1607866578;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/lp/private-chef-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:8:"Business";s:4:"tags";s:24:"["Food","Landing Pages"]";s:10:"menu_order";i:96;s:16:"popularity_index";i:855;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:436;a:15:{s:2:"id";i:5642;s:5:"title";s:6:"CTA 25";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png";s:12:"tmpl_created";i:1520520701;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:96;s:16:"popularity_index";i:226;s:11:"trend_index";i:262;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:437;a:15:{s:2:"id";i:11536;s:5:"title";s:19:"Gym &#8211; Fitness";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png";s:12:"tmpl_created";i:1567392927;s:6:"author";s:9:"Elementor";s:3:"url";s:101:"https://library.elementor.com/gym-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:7:"["Gym"]";s:10:"menu_order";i:96;s:16:"popularity_index";i:621;s:11:"trend_index";i:674;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:438;a:15:{s:2:"id";i:16325;s:5:"title";s:28:"Quality Lens &#8211; Product";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0006.png";s:12:"tmpl_created";i:1607868782;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/lp/quality-lens-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:7:"Product";s:4:"tags";s:27:"["Landing Pages","Product"]";s:10:"menu_order";i:97;s:16:"popularity_index";i:804;s:11:"trend_index";i:621;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:439;a:15:{s:2:"id";i:5583;s:5:"title";s:6:"CTA 26";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png";s:12:"tmpl_created";i:1520520689;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:97;s:16:"popularity_index";i:117;s:11:"trend_index";i:117;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:440;a:15:{s:2:"id";i:11545;s:5:"title";s:21:"Gym &#8211; Home Page";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png";s:12:"tmpl_created";i:1567392943;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/gym-home-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:7:"["Gym"]";s:10:"menu_order";i:97;s:16:"popularity_index";i:310;s:11:"trend_index";i:229;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:441;a:15:{s:2:"id";i:16332;s:5:"title";s:31:"Luxury Flat &#8211; Real Estate";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0007.png";s:12:"tmpl_created";i:1607868929;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/lp/luxury-flat-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:11:"Real Estate";s:4:"tags";s:38:"["flat","Landing Pages","Real estate"]";s:10:"menu_order";i:98;s:16:"popularity_index";i:809;s:11:"trend_index";i:707;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:442;a:15:{s:2:"id";i:16392;s:5:"title";s:30:"Open House &#8211; Real Estate";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png";s:12:"tmpl_created";i:1607869551;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/lp/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:11:"Real Estate";s:4:"tags";s:150:"["Agent","Business","clean","corporate","flat","google maps","homes","Landing Pages","listing","modern","Real estate","Realestate","realtor","realty"]";s:10:"menu_order";i:98;s:16:"popularity_index";i:839;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:443;a:15:{s:2:"id";i:5904;s:5:"title";s:6:"CTA 27";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png";s:12:"tmpl_created";i:1520520754;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:98;s:16:"popularity_index";i:528;s:11:"trend_index";i:517;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:444;a:15:{s:2:"id";i:12116;s:5:"title";s:24:"Law Firm &#8211; Service";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png";s:12:"tmpl_created";i:1572847105;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/law-firm-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["Law","Law Firm"]";s:10:"menu_order";i:98;s:16:"popularity_index";i:489;s:11:"trend_index";i:339;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:445;a:15:{s:2:"id";i:9985;s:5:"title";s:20:"Slide In | Promotion";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png";s:12:"tmpl_created";i:1547844661;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:98;s:16:"popularity_index";i:758;s:11:"trend_index";i:815;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:446;a:15:{s:2:"id";i:15950;s:5:"title";s:30:"Stylist &#8211; Online Service";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png";s:12:"tmpl_created";i:1607862286;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/lp/stylist-online-service/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:14:"Online Service";s:4:"tags";s:162:"["cosmetics","Fashion","girly","hairdresser","Landing Pages","lifestyle","makeup","manicure","pedicure","Products","salon","Shop","skincare","stylist","wellness"]";s:10:"menu_order";i:99;s:16:"popularity_index";i:853;s:11:"trend_index";i:805;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:447;a:15:{s:2:"id";i:16346;s:5:"title";s:33:"Your New Home &#8211; Real Estate";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png";s:12:"tmpl_created";i:1607869068;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:11:"Real Estate";s:4:"tags";s:31:"["Landing Pages","Real estate"]";s:10:"menu_order";i:99;s:16:"popularity_index";i:791;s:11:"trend_index";i:696;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:448;a:15:{s:2:"id";i:11094;s:5:"title";s:30:"Digital Agency &#8211; Clients";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png";s:12:"tmpl_created";i:1564641885;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/digital-agency-clients/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:30:"["Digital Agency","Marketing"]";s:10:"menu_order";i:99;s:16:"popularity_index";i:424;s:11:"trend_index";i:424;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:449;a:15:{s:2:"id";i:5912;s:5:"title";s:6:"CTA 28";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png";s:12:"tmpl_created";i:1520520755;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:99;s:16:"popularity_index";i:665;s:11:"trend_index";i:702;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:450;a:15:{s:2:"id";i:16253;s:5:"title";s:33:"Bicycle Adventures &#8211; Travel";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0005.png";s:12:"tmpl_created";i:1607867944;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/lp/bicycle-adventures-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Travel";s:4:"tags";s:36:"["Bicycle","Landing Pages","Travel"]";s:10:"menu_order";i:100;s:16:"popularity_index";i:785;s:11:"trend_index";i:524;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:451;a:15:{s:2:"id";i:16358;s:5:"title";s:41:"Sunset Valley Project &#8211; Real Estate";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png";s:12:"tmpl_created";i:1607869234;s:6:"author";s:9:"Elementor";s:3:"url";s:126:"https://library.elementor.com/lp/sunset-valley-project-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:11:"Real Estate";s:4:"tags";s:31:"["Landing Pages","Real estate"]";s:10:"menu_order";i:100;s:16:"popularity_index";i:846;s:11:"trend_index";i:743;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:452;a:15:{s:2:"id";i:11478;s:5:"title";s:17:"Gym &#8211; About";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png";s:12:"tmpl_created";i:1567392939;s:6:"author";s:9:"Elementor";s:3:"url";s:99:"https://library.elementor.com/gym-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:7:"["Gym"]";s:10:"menu_order";i:100;s:16:"popularity_index";i:481;s:11:"trend_index";i:579;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:453;a:15:{s:2:"id";i:5189;s:5:"title";s:6:"CTA 29";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png";s:12:"tmpl_created";i:1520443456;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:8:"["form"]";s:10:"menu_order";i:100;s:16:"popularity_index";i:472;s:11:"trend_index";i:631;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:454;a:15:{s:2:"id";i:16271;s:5:"title";s:42:"Luxury Travel Destinations  &#8211; Travel";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png";s:12:"tmpl_created";i:1607868120;s:6:"author";s:9:"Elementor";s:3:"url";s:126:"https://library.elementor.com/lp/luxury-travel-destinations-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Travel";s:4:"tags";s:37:"["Landing Pages","Travel","Vacation"]";s:10:"menu_order";i:101;s:16:"popularity_index";i:830;s:11:"trend_index";i:833;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:455;a:15:{s:2:"id";i:16379;s:5:"title";s:33:"Property Page &#8211; Real Estate";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png";s:12:"tmpl_created";i:1607869379;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/lp/property-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:11:"Real Estate";s:4:"tags";s:42:"["Landing Pages","Property","Real estate"]";s:10:"menu_order";i:101;s:16:"popularity_index";i:864;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:456;a:15:{s:2:"id";i:11563;s:5:"title";s:19:"Gym &#8211; Pricing";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png";s:12:"tmpl_created";i:1567392923;s:6:"author";s:9:"Elementor";s:3:"url";s:101:"https://library.elementor.com/gym-pricing/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:7:"["Gym"]";s:10:"menu_order";i:101;s:16:"popularity_index";i:577;s:11:"trend_index";i:736;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:457;a:15:{s:2:"id";i:5667;s:5:"title";s:5:"CTA 3";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png";s:12:"tmpl_created";i:1520520705;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/cta-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:101;s:16:"popularity_index";i:171;s:11:"trend_index";i:250;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:458;a:15:{s:2:"id";i:16283;s:5:"title";s:29:"Vacation Deals &#8211; Travel";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png";s:12:"tmpl_created";i:1607868279;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/lp/vacation-deals-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Travel";s:4:"tags";s:37:"["Landing Pages","Travel","Vacation"]";s:10:"menu_order";i:102;s:16:"popularity_index";i:850;s:11:"trend_index";i:799;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:459;a:15:{s:2:"id";i:11034;s:5:"title";s:30:"Digital Agency &#8211; Contact";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png";s:12:"tmpl_created";i:1564641881;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/contact-digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:30:"["Digital Agency","Marketing"]";s:10:"menu_order";i:102;s:16:"popularity_index";i:191;s:11:"trend_index";i:156;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:460;a:15:{s:2:"id";i:5198;s:5:"title";s:6:"CTA 30";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png";s:12:"tmpl_created";i:1520443458;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:8:"["form"]";s:10:"menu_order";i:102;s:16:"popularity_index";i:572;s:11:"trend_index";i:511;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:461;a:15:{s:2:"id";i:16299;s:5:"title";s:29:"New Adventures &#8211; Travel";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png";s:12:"tmpl_created";i:1607868454;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/lp/new-adventures-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Travel";s:4:"tags";s:50:"["Adventures","Landing Pages","Travel","Vacation"]";s:10:"menu_order";i:103;s:16:"popularity_index";i:849;s:11:"trend_index";i:830;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:462;a:15:{s:2:"id";i:11528;s:5:"title";s:19:"Gym &#8211; Contact";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png";s:12:"tmpl_created";i:1567392917;s:6:"author";s:9:"Elementor";s:3:"url";s:101:"https://library.elementor.com/gym-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:7:"["Gym"]";s:10:"menu_order";i:103;s:16:"popularity_index";i:505;s:11:"trend_index";i:624;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:463;a:15:{s:2:"id";i:5206;s:5:"title";s:6:"CTA 31";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png";s:12:"tmpl_created";i:1520443459;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:8:"["form"]";s:10:"menu_order";i:103;s:16:"popularity_index";i:593;s:11:"trend_index";i:611;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:464;a:15:{s:2:"id";i:519;s:5:"title";s:24:"Homepage &#8211; Fitness";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/10/0023.png";s:12:"tmpl_created";i:1477388808;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/homepage-fitness/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:45:"["Fitness","Gym","Health","Homepage","Sport"]";s:10:"menu_order";i:104;s:16:"popularity_index";i:10;s:11:"trend_index";i:62;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:465;a:15:{s:2:"id";i:16312;s:5:"title";s:26:"Summer Time &#8211; Travel";s:9:"thumbnail";s:86:"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png";s:12:"tmpl_created";i:1607868625;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/lp/summer-time-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Travel";s:4:"tags";s:37:"["Landing Pages","Travel","Vacation"]";s:10:"menu_order";i:104;s:16:"popularity_index";i:829;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:466;a:15:{s:2:"id";i:5249;s:5:"title";s:6:"CTA 32";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png";s:12:"tmpl_created";i:1520443470;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-32/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:8:"["form"]";s:10:"menu_order";i:104;s:16:"popularity_index";i:512;s:11:"trend_index";i:409;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:467;a:15:{s:2:"id";i:487;s:5:"title";s:29:"Landing Page &#8211; Vacation";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/10/0021.png";s:12:"tmpl_created";i:1477388357;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:105;s:16:"popularity_index";i:32;s:11:"trend_index";i:136;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:468;a:15:{s:2:"id";i:15870;s:5:"title";s:32:"Tel Aviv Vacation &#8211; Travel";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/10/0021.png";s:12:"tmpl_created";i:1607860195;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/lp/tel-aviv-vacation-travel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Travel";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:105;s:16:"popularity_index";i:802;s:11:"trend_index";i:688;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:469;a:15:{s:2:"id";i:5550;s:5:"title";s:6:"CTA 33";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png";s:12:"tmpl_created";i:1520520682;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-33/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:105;s:16:"popularity_index";i:260;s:11:"trend_index";i:562;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:470;a:15:{s:2:"id";i:9559;s:5:"title";s:16:"Slide In | Login";s:9:"thumbnail";s:83:"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png";s:12:"tmpl_created";i:1546946547;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/popups/slide-in-login-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:105;s:16:"popularity_index";i:617;s:11:"trend_index";i:839;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:471;a:15:{s:2:"id";i:5852;s:5:"title";s:6:"CTA 34";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png";s:12:"tmpl_created";i:1520443600;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/cta-34/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"page";s:4:"tags";s:8:"["form"]";s:10:"menu_order";i:106;s:16:"popularity_index";i:563;s:11:"trend_index";i:828;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:472;a:15:{s:2:"id";i:855;s:5:"title";s:37:"Landing Page &#8211; Personal Trainer";s:9:"thumbnail";s:90:"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png";s:12:"tmpl_created";i:1494352061;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:106;s:16:"popularity_index";i:290;s:11:"trend_index";i:394;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:473;a:15:{s:2:"id";i:16440;s:5:"title";s:31:"Marketing Webinar &#8211; Event";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0015.png";s:12:"tmpl_created";i:1607934662;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/lp/marketing-webinar-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Events";s:4:"tags";s:37:"["Event","Landing Pages","Marketing"]";s:10:"menu_order";i:106;s:16:"popularity_index";i:794;s:11:"trend_index";i:762;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:474;a:15:{s:2:"id";i:955;s:5:"title";s:31:"Landing Page &#8211; Law Office";s:9:"thumbnail";s:84:"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png";s:12:"tmpl_created";i:1494352069;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:32:"["Landing Pages","Law","Office"]";s:10:"menu_order";i:107;s:16:"popularity_index";i:202;s:11:"trend_index";i:271;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:475;a:15:{s:2:"id";i:16212;s:5:"title";s:33:"Wedding Celebration &#8211; Event";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/10/0025.png";s:12:"tmpl_created";i:1607867299;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/lp/wedding-celebration-event/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:2:"lp";s:7:"subtype";s:6:"Events";s:4:"tags";s:35:"["Event","Landing Pages","Wedding"]";s:10:"menu_order";i:107;s:16:"popularity_index";i:798;s:11:"trend_index";i:730;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:476;a:15:{s:2:"id";i:5675;s:5:"title";s:5:"CTA 4";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png";s:12:"tmpl_created";i:1520520707;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/cta-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:107;s:16:"popularity_index";i:391;s:11:"trend_index";i:484;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:477;a:15:{s:2:"id";i:9752;s:5:"title";s:27:"Slide In | Sale | Promotion";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png";s:12:"tmpl_created";i:1547823982;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:6:"fly-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:107;s:16:"popularity_index";i:740;s:11:"trend_index";i:801;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:478;a:15:{s:2:"id";i:5591;s:5:"title";s:5:"CTA 5";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png";s:12:"tmpl_created";i:1520520691;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/cta-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:108;s:16:"popularity_index";i:133;s:11:"trend_index";i:130;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:479;a:15:{s:2:"id";i:9373;s:5:"title";s:33:"Landing Page &#8211; Conference 5";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png";s:12:"tmpl_created";i:1542811219;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/landing-page-conference-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:108;s:16:"popularity_index";i:283;s:11:"trend_index";i:325;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:480;a:15:{s:2:"id";i:974;s:5:"title";s:28:"Landing Page &#8211; Stylist";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png";s:12:"tmpl_created";i:1494352071;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/landing-page-stylist/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:162:"["cosmetics","Fashion","girly","hairdresser","Landing Pages","lifestyle","Makeup","manicure","pedicure","Products","salon","Shop","skincare","stylist","wellness"]";s:10:"menu_order";i:109;s:16:"popularity_index";i:329;s:11:"trend_index";i:512;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:481;a:15:{s:2:"id";i:5599;s:5:"title";s:5:"CTA 6";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png";s:12:"tmpl_created";i:1520520693;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/cta-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:109;s:16:"popularity_index";i:252;s:11:"trend_index";i:362;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:482;a:15:{s:2:"id";i:5575;s:5:"title";s:5:"CTA 7";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png";s:12:"tmpl_created";i:1520443543;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/cta-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:110;s:16:"popularity_index";i:13;s:11:"trend_index";i:586;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:483;a:15:{s:2:"id";i:11948;s:5:"title";s:18:"Maintenance Mode 3";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2019/10/mm3.png";s:12:"tmpl_created";i:1572153978;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/maintenance-mode-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:20:"["Maintenance mode"]";s:10:"menu_order";i:110;s:16:"popularity_index";i:195;s:11:"trend_index";i:259;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:484;a:15:{s:2:"id";i:754;s:5:"title";s:25:"Services &#8211; Interior";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png";s:12:"tmpl_created";i:1485269691;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:111;s:16:"popularity_index";i:251;s:11:"trend_index";i:400;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:485;a:15:{s:2:"id";i:5658;s:5:"title";s:5:"CTA 8";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png";s:12:"tmpl_created";i:1520520704;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/cta-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:111;s:16:"popularity_index";i:187;s:11:"trend_index";i:235;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:486;a:15:{s:2:"id";i:10169;s:5:"title";s:37:"Slide In | Register | Subscribe | App";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png";s:12:"tmpl_created";i:1547852334;s:6:"author";s:9:"Elementor";s:3:"url";s:126:"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:112;s:16:"popularity_index";i:546;s:11:"trend_index";i:701;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:487;a:15:{s:2:"id";i:752;s:5:"title";s:24:"Contact &#8211; Interior";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png";s:12:"tmpl_created";i:1485269737;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:112;s:16:"popularity_index";i:344;s:11:"trend_index";i:425;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:488;a:15:{s:2:"id";i:5650;s:5:"title";s:5:"CTA 9";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png";s:12:"tmpl_created";i:1520520702;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/cta-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"call to action";s:4:"tags";s:7:"["cta"]";s:10:"menu_order";i:112;s:16:"popularity_index";i:94;s:11:"trend_index";i:148;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:489;a:15:{s:2:"id";i:15407;s:5:"title";s:24:"Dance Studio &#8211; 404";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg";s:12:"tmpl_created";i:1603181958;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/blocks/dance-studio-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:22:"["404","Dance Studio"]";s:10:"menu_order";i:113;s:16:"popularity_index";i:783;s:11:"trend_index";i:710;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:490;a:15:{s:2:"id";i:753;s:5:"title";s:22:"About &#8211; Interior";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png";s:12:"tmpl_created";i:1485269710;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:113;s:16:"popularity_index";i:309;s:11:"trend_index";i:435;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:491;a:15:{s:2:"id";i:15400;s:5:"title";s:27:"Dance Studio &#8211; Footer";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg";s:12:"tmpl_created";i:1603181989;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:25:"["Dance Studio","Footer"]";s:10:"menu_order";i:114;s:16:"popularity_index";i:586;s:11:"trend_index";i:243;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:492;a:15:{s:2:"id";i:751;s:5:"title";s:25:"Homepage &#8211; Interior";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png";s:12:"tmpl_created";i:1485269743;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:114;s:16:"popularity_index";i:258;s:11:"trend_index";i:200;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:493;a:15:{s:2:"id";i:15391;s:5:"title";s:27:"Dance Studio &#8211; Header";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg";s:12:"tmpl_created";i:1603182011;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/blocks/dance-studio-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:25:"["Dance Studio","Header"]";s:10:"menu_order";i:115;s:16:"popularity_index";i:352;s:11:"trend_index";i:67;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:494;a:15:{s:2:"id";i:2402;s:5:"title";s:32:"Homepage &#8211; Interior Design";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png";s:12:"tmpl_created";i:1506441447;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:193:"["Architecture","building","Business","Creative","exterior design","furniture design","Gallery","garden design","house","interior design","landscape design","multipurpose","portfolio","studio"]";s:10:"menu_order";i:115;s:16:"popularity_index";i:126;s:11:"trend_index";i:257;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:495;a:15:{s:2:"id";i:9680;s:5:"title";s:23:"Slide In | Content Lock";s:9:"thumbnail";s:91:"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png";s:12:"tmpl_created";i:1547010967;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:115;s:16:"popularity_index";i:725;s:11:"trend_index";i:725;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:496;a:15:{s:2:"id";i:11192;s:5:"title";s:14:"Digital Agency";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg";s:12:"tmpl_created";i:1564642399;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/blocks/digital-agency-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:39:"["Digital Agency","Footer","Marketing"]";s:10:"menu_order";i:116;s:16:"popularity_index";i:172;s:11:"trend_index";i:105;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:497;a:15:{s:2:"id";i:3626;s:5:"title";s:30:"Snowboard Site &#8211; Contact";s:9:"thumbnail";s:62:"https://library.elementor.com/wp-content/uploads/2017/12/3.png";s:12:"tmpl_created";i:1513513193;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:116;s:16:"popularity_index";i:293;s:11:"trend_index";i:637;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:498;a:15:{s:2:"id";i:11198;s:5:"title";s:14:"Digital Agency";s:9:"thumbnail";s:92:"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png";s:12:"tmpl_created";i:1564642395;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/blocks/digital-agency-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:39:"["Digital Agency","Header","Marketing"]";s:10:"menu_order";i:117;s:16:"popularity_index";i:34;s:11:"trend_index";i:10;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:499;a:15:{s:2:"id";i:11966;s:5:"title";s:18:"Maintenance mode 4";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2019/10/mm4.png";s:12:"tmpl_created";i:1572154274;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/maintenance-mode-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:20:"["Maintenance mode"]";s:10:"menu_order";i:117;s:16:"popularity_index";i:490;s:11:"trend_index";i:595;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:500;a:15:{s:2:"id";i:9783;s:5:"title";s:31:"Slide In | Register | Subscribe";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png";s:12:"tmpl_created";i:1547831059;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"popup";s:7:"subtype";s:8:"slide-in";s:4:"tags";s:2:"[]";s:10:"menu_order";i:117;s:16:"popularity_index";i:534;s:11:"trend_index";i:415;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:501;a:15:{s:2:"id";i:11204;s:5:"title";s:14:"Digital Agency";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg";s:12:"tmpl_created";i:1564642389;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/blocks/digital-agency-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:36:"["404","Digital Agency","Marketing"]";s:10:"menu_order";i:118;s:16:"popularity_index";i:301;s:11:"trend_index";i:239;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:502;a:15:{s:2:"id";i:3632;s:5:"title";s:31:"Snowboard Site &#8211; Services";s:9:"thumbnail";s:62:"https://library.elementor.com/wp-content/uploads/2017/12/2.png";s:12:"tmpl_created";i:1513513171;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:118;s:16:"popularity_index";i:222;s:11:"trend_index";i:342;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:503;a:15:{s:2:"id";i:11220;s:5:"title";s:14:"Digital Agency";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png";s:12:"tmpl_created";i:1564642385;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/blocks/digital-agency-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:30:"["Digital Agency","Marketing"]";s:10:"menu_order";i:119;s:16:"popularity_index";i:116;s:11:"trend_index";i:73;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:504;a:15:{s:2:"id";i:3619;s:5:"title";s:31:"Snowboard Site &#8211; Homepage";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2017/12/home.png";s:12:"tmpl_created";i:1513513137;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:119;s:16:"popularity_index";i:232;s:11:"trend_index";i:219;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:505;a:15:{s:2:"id";i:11231;s:5:"title";s:14:"Digital Agency";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png";s:12:"tmpl_created";i:1564642380;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/digital-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:30:"["Digital Agency","Marketing"]";s:10:"menu_order";i:120;s:16:"popularity_index";i:145;s:11:"trend_index";i:71;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:506;a:15:{s:2:"id";i:9425;s:5:"title";s:38:"Black Friday &#8211;  80&#8217;s style";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/11/unnamed-file.png";s:12:"tmpl_created";i:1542901234;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/black-friday-80s-style/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:120;s:16:"popularity_index";i:360;s:11:"trend_index";i:472;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:507;a:15:{s:2:"id";i:5711;s:5:"title";s:5:"FAQ 1";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png";s:12:"tmpl_created";i:1520443571;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/faq-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:3:"faq";s:4:"tags";s:7:"["faq"]";s:10:"menu_order";i:121;s:16:"popularity_index";i:200;s:11:"trend_index";i:231;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:508;a:15:{s:2:"id";i:11973;s:5:"title";s:18:"Maintenance mode 5";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2019/10/mm5.png";s:12:"tmpl_created";i:1572154523;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/maintenance-mode-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:20:"["Maintenance mode"]";s:10:"menu_order";i:121;s:16:"popularity_index";i:418;s:11:"trend_index";i:476;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:509;a:15:{s:2:"id";i:5737;s:5:"title";s:6:"FAQ 10";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png";s:12:"tmpl_created";i:1520443576;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/faq-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:3:"faq";s:4:"tags";s:7:"["faq"]";s:10:"menu_order";i:122;s:16:"popularity_index";i:155;s:11:"trend_index";i:112;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:510;a:15:{s:2:"id";i:11981;s:5:"title";s:18:"Maintenance mode 6";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2019/10/mm6.png";s:12:"tmpl_created";i:1572155125;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/maintenance-mode-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:20:"["Maintenance mode"]";s:10:"menu_order";i:122;s:16:"popularity_index";i:410;s:11:"trend_index";i:390;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:511;a:15:{s:2:"id";i:5746;s:5:"title";s:6:"FAQ 11";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png";s:12:"tmpl_created";i:1520443578;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/faq-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:3:"faq";s:4:"tags";s:7:"["faq"]";s:10:"menu_order";i:123;s:16:"popularity_index";i:212;s:11:"trend_index";i:305;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:512;a:15:{s:2:"id";i:5703;s:5:"title";s:6:"FAQ 13";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png";s:12:"tmpl_created";i:1520443569;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/faq-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:3:"faq";s:4:"tags";s:7:"["faq"]";s:10:"menu_order";i:124;s:16:"popularity_index";i:29;s:11:"trend_index";i:38;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:513;a:15:{s:2:"id";i:147;s:5:"title";s:20:"Homepage &#8211; App";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0004.png";s:12:"tmpl_created";i:1470829868;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/homepage-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:18:"["App","Homepage"]";s:10:"menu_order";i:124;s:16:"popularity_index";i:5;s:11:"trend_index";i:16;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:514;a:15:{s:2:"id";i:5719;s:5:"title";s:5:"FAQ 4";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png";s:12:"tmpl_created";i:1520443573;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/faq-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:3:"faq";s:4:"tags";s:7:"["faq"]";s:10:"menu_order";i:125;s:16:"popularity_index";i:125;s:11:"trend_index";i:251;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:515;a:15:{s:2:"id";i:777;s:5:"title";s:28:"Homepage &#8211; Coffee Shop";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg";s:12:"tmpl_created";i:1485273092;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:41:"["Coffee","Homepage","Restaurant","Shop"]";s:10:"menu_order";i:125;s:16:"popularity_index";i:175;s:11:"trend_index";i:414;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:516;a:15:{s:2:"id";i:5729;s:5:"title";s:5:"FAQ 5";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png";s:12:"tmpl_created";i:1520443575;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/faq-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:3:"faq";s:4:"tags";s:7:"["faq"]";s:10:"menu_order";i:126;s:16:"popularity_index";i:319;s:11:"trend_index";i:327;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:517;a:15:{s:2:"id";i:2404;s:5:"title";s:24:"Homepage &#8211; Product";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2017/09/product.png";s:12:"tmpl_created";i:1506441452;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:103:"["Business","colorful","Ecommerce","flat","mobile","modern","responsive","retina","Shop","woocommerce"]";s:10:"menu_order";i:126;s:16:"popularity_index";i:164;s:11:"trend_index";i:286;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:518;a:15:{s:2:"id";i:5755;s:5:"title";s:5:"FAQ 6";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png";s:12:"tmpl_created";i:1520443580;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/faq-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:3:"faq";s:4:"tags";s:7:"["faq"]";s:10:"menu_order";i:127;s:16:"popularity_index";i:112;s:11:"trend_index";i:180;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:519;a:15:{s:2:"id";i:492;s:5:"title";s:25:"Homepage &#8211; Law firm";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/10/0024.png";s:12:"tmpl_created";i:1477388365;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:25:"["Firm","Homepage","Law"]";s:10:"menu_order";i:127;s:16:"popularity_index";i:14;s:11:"trend_index";i:79;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:520;a:15:{s:2:"id";i:5764;s:5:"title";s:5:"FAQ 7";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png";s:12:"tmpl_created";i:1520443582;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/faq-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:3:"faq";s:4:"tags";s:7:"["faq"]";s:10:"menu_order";i:128;s:16:"popularity_index";i:338;s:11:"trend_index";i:474;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:521;a:15:{s:2:"id";i:3451;s:5:"title";s:39:"Homepage &#8211; Goodness meal services";s:9:"thumbnail";s:84:"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png";s:12:"tmpl_created";i:1512054116;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:128;s:16:"popularity_index";i:266;s:11:"trend_index";i:407;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:522;a:15:{s:2:"id";i:5684;s:5:"title";s:5:"FAQ 8";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png";s:12:"tmpl_created";i:1520443565;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/faq-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:3:"faq";s:4:"tags";s:7:"["faq"]";s:10:"menu_order";i:129;s:16:"popularity_index";i:74;s:11:"trend_index";i:193;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:523;a:15:{s:2:"id";i:2152;s:5:"title";s:26:"Homepage &#8211; Cake Shop";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png";s:12:"tmpl_created";i:1499774132;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/homepage-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:39:"["Cake","Homepage","Restaurant","Shop"]";s:10:"menu_order";i:129;s:16:"popularity_index";i:382;s:11:"trend_index";i:530;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:524;a:15:{s:2:"id";i:5693;s:5:"title";s:5:"FAQ 9";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png";s:12:"tmpl_created";i:1520443567;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/faq-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:3:"faq";s:4:"tags";s:7:"["faq"]";s:10:"menu_order";i:130;s:16:"popularity_index";i:224;s:11:"trend_index";i:515;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:525;a:15:{s:2:"id";i:1068;s:5:"title";s:27:"Homepage &#8211; Copywriter";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png";s:12:"tmpl_created";i:1488805928;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:25:"["Copywriter","Homepage"]";s:10:"menu_order";i:130;s:16:"popularity_index";i:249;s:11:"trend_index";i:437;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:526;a:15:{s:2:"id";i:6053;s:5:"title";s:10:"Features 1";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png";s:12:"tmpl_created";i:1520443645;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/features-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"features";s:4:"tags";s:12:"["features"]";s:10:"menu_order";i:131;s:16:"popularity_index";i:179;s:11:"trend_index";i:463;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:527;a:15:{s:2:"id";i:2813;s:5:"title";s:32:"Homepage &#8211; Creative Agency";s:9:"thumbnail";s:90:"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-–-Home-Page.png";s:12:"tmpl_created";i:1509615049;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/homepage-creative-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:32:"["Agency","Creative","Homepage"]";s:10:"menu_order";i:131;s:16:"popularity_index";i:130;s:11:"trend_index";i:215;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:528;a:15:{s:2:"id";i:5991;s:5:"title";s:11:"Features 10";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png";s:12:"tmpl_created";i:1520443632;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/features-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"features";s:4:"tags";s:12:"["features"]";s:10:"menu_order";i:132;s:16:"popularity_index";i:135;s:11:"trend_index";i:265;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:529;a:15:{s:2:"id";i:728;s:5:"title";s:33:"Homepage &#8211; Delivery Company";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg";s:12:"tmpl_created";i:1485269993;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/homepage-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:23:"["Delivery","Homepage"]";s:10:"menu_order";i:132;s:16:"popularity_index";i:324;s:11:"trend_index";i:790;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:530;a:15:{s:2:"id";i:6044;s:5:"title";s:11:"Features 11";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png";s:12:"tmpl_created";i:1520443643;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/features-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"features";s:4:"tags";s:12:"["features"]";s:10:"menu_order";i:133;s:16:"popularity_index";i:70;s:11:"trend_index";i:163;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:531;a:15:{s:2:"id";i:2403;s:5:"title";s:29:"Homepage &#8211; Luxury Hotel";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png";s:12:"tmpl_created";i:1506441428;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:133;s:16:"popularity_index";i:314;s:11:"trend_index";i:499;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:532;a:15:{s:2:"id";i:6212;s:5:"title";s:11:"Features 12";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png";s:12:"tmpl_created";i:1520443684;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/features-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"features";s:4:"tags";s:12:"["features"]";s:10:"menu_order";i:134;s:16:"popularity_index";i:81;s:11:"trend_index";i:98;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:533;a:15:{s:2:"id";i:1903;s:5:"title";s:20:"One Page &#8211; Spa";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2017/06/spa.png";s:12:"tmpl_created";i:1496822325;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:132:"["Beauty","Care","girly","Hair","Health","hospitality","massage","medical","parlor","physiotherapy","salon","Spa","wellness","Yoga"]";s:10:"menu_order";i:134;s:16:"popularity_index";i:211;s:11:"trend_index";i:320;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:534;a:15:{s:2:"id";i:6220;s:5:"title";s:10:"Features 2";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png";s:12:"tmpl_created";i:1520443685;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/features-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"features";s:4:"tags";s:12:"["features"]";s:10:"menu_order";i:135;s:16:"popularity_index";i:88;s:11:"trend_index";i:189;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:535;a:15:{s:2:"id";i:2123;s:5:"title";s:33:"One Page &#8211; Architect Office";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/06/architect.png";s:12:"tmpl_created";i:1499772989;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:135;s:16:"popularity_index";i:11;s:11:"trend_index";i:19;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:536;a:15:{s:2:"id";i:5983;s:5:"title";s:10:"Features 3";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png";s:12:"tmpl_created";i:1520443630;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"features";s:4:"tags";s:11:"["featues"]";s:10:"menu_order";i:136;s:16:"popularity_index";i:231;s:11:"trend_index";i:351;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:537;a:15:{s:2:"id";i:1888;s:5:"title";s:32:"One Page &#8211; Creative Meetup";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png";s:12:"tmpl_created";i:1496822319;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:136;s:16:"popularity_index";i:315;s:11:"trend_index";i:771;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:538;a:15:{s:2:"id";i:5974;s:5:"title";s:10:"Features 4";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png";s:12:"tmpl_created";i:1520443629;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/features-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"features";s:4:"tags";s:12:"["features"]";s:10:"menu_order";i:137;s:16:"popularity_index";i:69;s:11:"trend_index";i:181;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:539;a:15:{s:2:"id";i:1891;s:5:"title";s:35:"One Page &#8211; Textile Convention";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png";s:12:"tmpl_created";i:1496822323;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:137;s:16:"popularity_index";i:503;s:11:"trend_index";i:835;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:540;a:15:{s:2:"id";i:5624;s:5:"title";s:10:"Features 5";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png";s:12:"tmpl_created";i:1520443553;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/features-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"features";s:4:"tags";s:12:"["features"]";s:10:"menu_order";i:138;s:16:"popularity_index";i:93;s:11:"trend_index";i:352;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:541;a:15:{s:2:"id";i:1880;s:5:"title";s:24:"One Page &#8211; Wedding";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png";s:12:"tmpl_created";i:1496822317;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/one-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:82:"["bride","ceremony","cute","Event","fancy","girly","Groom","guestbook","marriage"]";s:10:"menu_order";i:138;s:16:"popularity_index";i:535;s:11:"trend_index";i:576;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:542;a:15:{s:2:"id";i:5615;s:5:"title";s:10:"Features 6";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png";s:12:"tmpl_created";i:1520443551;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/features-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"features";s:4:"tags";s:12:"["features"]";s:10:"menu_order";i:139;s:16:"popularity_index";i:41;s:11:"trend_index";i:119;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:543;a:15:{s:2:"id";i:1885;s:5:"title";s:29:"One Page &#8211; Yacht Rental";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png";s:12:"tmpl_created";i:1496822321;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:139;s:16:"popularity_index";i:235;s:11:"trend_index";i:610;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:544;a:15:{s:2:"id";i:5963;s:5:"title";s:10:"Features 7";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png";s:12:"tmpl_created";i:1520443626;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/features-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"features";s:4:"tags";s:12:"["features"]";s:10:"menu_order";i:140;s:16:"popularity_index";i:67;s:11:"trend_index";i:133;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:545;a:15:{s:2:"id";i:2723;s:5:"title";s:34:"Portfolio &#8211; Graphic Designer";s:9:"thumbnail";s:91:"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-–-Portfolio.png";s:12:"tmpl_created";i:1509633883;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:140;s:16:"popularity_index";i:218;s:11:"trend_index";i:300;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:546;a:15:{s:2:"id";i:6204;s:5:"title";s:10:"Features 8";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png";s:12:"tmpl_created";i:1520443681;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/features-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"features";s:4:"tags";s:12:"["features"]";s:10:"menu_order";i:141;s:16:"popularity_index";i:217;s:11:"trend_index";i:223;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:547;a:15:{s:2:"id";i:2145;s:5:"title";s:30:"About &#8211; Delivery Company";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png";s:12:"tmpl_created";i:1499774125;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:10:"["moving"]";s:10:"menu_order";i:141;s:16:"popularity_index";i:403;s:11:"trend_index";i:699;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:548;a:15:{s:2:"id";i:6196;s:5:"title";s:10:"Features 9";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png";s:12:"tmpl_created";i:1520443680;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/features-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"features";s:4:"tags";s:12:"["features"]";s:10:"menu_order";i:142;s:16:"popularity_index";i:106;s:11:"trend_index";i:113;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:549;a:15:{s:2:"id";i:2155;s:5:"title";s:23:"About &#8211; Cake Shop";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png";s:12:"tmpl_created";i:1499774130;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:8:"["Food"]";s:10:"menu_order";i:142;s:16:"popularity_index";i:471;s:11:"trend_index";i:461;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:550;a:15:{s:2:"id";i:15033;s:5:"title";s:28:"Flooring Company &#8211; 404";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2020/08/404.png";s:12:"tmpl_created";i:1597739459;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/blocks/flooring-company-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:45:"["404","Flooring company","Flooring website"]";s:10:"menu_order";i:143;s:16:"popularity_index";i:655;s:11:"trend_index";i:671;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:551;a:15:{s:2:"id";i:1085;s:5:"title";s:21:"About &#8211; Startup";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png";s:12:"tmpl_created";i:1488810874;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/about-startup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:19:"["About","Startup"]";s:10:"menu_order";i:143;s:16:"popularity_index";i:8;s:11:"trend_index";i:36;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:552;a:15:{s:2:"id";i:15042;s:5:"title";s:32:"Flooring Company &#8211; Archive";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png";s:12:"tmpl_created";i:1597739084;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:39:"["Flooring company","Flooring website"]";s:10:"menu_order";i:144;s:16:"popularity_index";i:320;s:11:"trend_index";i:275;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:553;a:15:{s:2:"id";i:15017;s:5:"title";s:31:"Flooring Company &#8211; Footer";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png";s:12:"tmpl_created";i:1597738933;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:48:"["Flooring company","Flooring website","Footer"]";s:10:"menu_order";i:145;s:16:"popularity_index";i:323;s:11:"trend_index";i:192;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:554;a:15:{s:2:"id";i:101;s:5:"title";s:16:"About &#8211; CV";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0018.png";s:12:"tmpl_created";i:1470829785;s:6:"author";s:9:"Elementor";s:3:"url";s:98:"https://library.elementor.com/about-cv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:77:"["creative portfolio","Personal","portfolio","professional","resume","vcard"]";s:10:"menu_order";i:145;s:16:"popularity_index";i:54;s:11:"trend_index";i:182;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:555;a:15:{s:2:"id";i:15007;s:5:"title";s:31:"Flooring Company &#8211; Header";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/08/Header.png";s:12:"tmpl_created";i:1597738896;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/blocks/flooring-company-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:48:"["Flooring company","Flooring website","Header"]";s:10:"menu_order";i:146;s:16:"popularity_index";i:459;s:11:"trend_index";i:333;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:556;a:15:{s:2:"id";i:15052;s:5:"title";s:36:"Flooring Company &#8211; Single post";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/08/Single.png";s:12:"tmpl_created";i:1597738858;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:39:"["Flooring company","Flooring website"]";s:10:"menu_order";i:147;s:16:"popularity_index";i:392;s:11:"trend_index";i:226;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:557;a:15:{s:2:"id";i:213;s:5:"title";s:26:"About &#8211; Architecture";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0008.png";s:12:"tmpl_created";i:1470829766;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:24:"["About","Architecture"]";s:10:"menu_order";i:147;s:16:"popularity_index";i:20;s:11:"trend_index";i:65;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:558;a:15:{s:2:"id";i:2802;s:5:"title";s:38:"Portfolio &#8211; Fashion Photographer";s:9:"thumbnail";s:95:"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-–-Portfolio.png";s:12:"tmpl_created";i:1509615440;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:148;s:16:"popularity_index";i:263;s:11:"trend_index";i:504;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:559;a:15:{s:2:"id";i:7837;s:5:"title";s:9:"footer 01";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg";s:12:"tmpl_created";i:1524582852;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/footer-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:148;s:16:"popularity_index";i:495;s:11:"trend_index";i:539;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:560;a:15:{s:2:"id";i:2828;s:5:"title";s:35:"Landing Page &#8211; Law Convention";s:9:"thumbnail";s:92:"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png";s:12:"tmpl_created";i:1509631636;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/landing-page-law-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:36:"["Convention","Landing Pages","Law"]";s:10:"menu_order";i:149;s:16:"popularity_index";i:423;s:11:"trend_index";i:625;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:561;a:15:{s:2:"id";i:7937;s:5:"title";s:10:"footer 010";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg";s:12:"tmpl_created";i:1524582665;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/footer-010/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:2:"[]";s:10:"menu_order";i:149;s:16:"popularity_index";i:185;s:11:"trend_index";i:115;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:562;a:15:{s:2:"id";i:1461;s:5:"title";s:28:"Landing Page &#8211; Ebook 1";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png";s:12:"tmpl_created";i:1494352121;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:143:"["App","author","book","brochure","download","e-book","Ebook","Landing Pages","Marketing","Product","publisher","sell online","seo","showcase"]";s:10:"menu_order";i:150;s:16:"popularity_index";i:374;s:11:"trend_index";i:516;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:563;a:15:{s:2:"id";i:7950;s:5:"title";s:10:"footer 011";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg";s:12:"tmpl_created";i:1524582631;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/footer-011/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:2:"[]";s:10:"menu_order";i:150;s:16:"popularity_index";i:244;s:11:"trend_index";i:203;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:564;a:15:{s:2:"id";i:1460;s:5:"title";s:28:"Landing Page &#8211; Ebook 2";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png";s:12:"tmpl_created";i:1494352124;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:151;s:16:"popularity_index";i:426;s:11:"trend_index";i:466;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:565;a:15:{s:2:"id";i:7959;s:5:"title";s:10:"footer 012";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg";s:12:"tmpl_created";i:1524582605;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/footer-012/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:2:"[]";s:10:"menu_order";i:151;s:16:"popularity_index";i:177;s:11:"trend_index";i:140;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:566;a:15:{s:2:"id";i:1459;s:5:"title";s:28:"Landing Page &#8211; Ebook 3";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png";s:12:"tmpl_created";i:1494352125;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:152;s:16:"popularity_index";i:254;s:11:"trend_index";i:422;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:567;a:15:{s:2:"id";i:7982;s:5:"title";s:10:"footer 013";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg";s:12:"tmpl_created";i:1524582468;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/footer-013/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:2:"[]";s:10:"menu_order";i:152;s:16:"popularity_index";i:209;s:11:"trend_index";i:212;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:568;a:15:{s:2:"id";i:1052;s:5:"title";s:33:"Landing Page &#8211; Mobile App 1";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2017/03/app.png";s:12:"tmpl_created";i:1488810873;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:153;s:16:"popularity_index";i:47;s:11:"trend_index";i:158;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:569;a:15:{s:2:"id";i:7997;s:5:"title";s:10:"footer 014";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg";s:12:"tmpl_created";i:1524582343;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/footer-014/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:2:"[]";s:10:"menu_order";i:153;s:16:"popularity_index";i:64;s:11:"trend_index";i:41;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:570;a:15:{s:2:"id";i:1505;s:5:"title";s:33:"Landing Page &#8211; Mobile App 4";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png";s:12:"tmpl_created";i:1494352110;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:154;s:16:"popularity_index";i:454;s:11:"trend_index";i:547;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:571;a:15:{s:2:"id";i:9119;s:5:"title";s:10:"footer 015";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png";s:12:"tmpl_created";i:1532428138;s:6:"author";s:9:"Elementor";s:3:"url";s:101:"https://library.elementor.com/blocks/demo/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:2:"[]";s:10:"menu_order";i:154;s:16:"popularity_index";i:240;s:11:"trend_index";i:154;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:572;a:15:{s:2:"id";i:726;s:5:"title";s:33:"Landing Page &#8211; Conference 1";s:9:"thumbnail";s:84:"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg";s:12:"tmpl_created";i:1485270062;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:155;s:16:"popularity_index";i:498;s:11:"trend_index";i:651;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:573;a:15:{s:2:"id";i:7852;s:5:"title";s:9:"footer 02";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg";s:12:"tmpl_created";i:1524582875;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/footer-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:2:"[]";s:10:"menu_order";i:155;s:16:"popularity_index";i:199;s:11:"trend_index";i:96;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:574;a:15:{s:2:"id";i:1613;s:5:"title";s:33:"Landing Page &#8211; Conference 2";s:9:"thumbnail";s:109:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png";s:12:"tmpl_created";i:1494352129;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:156;s:16:"popularity_index";i:504;s:11:"trend_index";i:464;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:575;a:15:{s:2:"id";i:7862;s:5:"title";s:9:"footer 03";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg";s:12:"tmpl_created";i:1524582903;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/footer-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:2:"[]";s:10:"menu_order";i:156;s:16:"popularity_index";i:137;s:11:"trend_index";i:91;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:576;a:15:{s:2:"id";i:1612;s:5:"title";s:33:"Landing Page &#8211; Conference 3";s:9:"thumbnail";s:89:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png";s:12:"tmpl_created";i:1494352127;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:157;s:16:"popularity_index";i:549;s:11:"trend_index";i:693;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:577;a:15:{s:2:"id";i:7871;s:5:"title";s:9:"footer 04";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg";s:12:"tmpl_created";i:1524582927;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/footer-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:2:"[]";s:10:"menu_order";i:157;s:16:"popularity_index";i:97;s:11:"trend_index";i:55;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:578;a:15:{s:2:"id";i:1614;s:5:"title";s:33:"Landing Page &#8211; Conference 4";s:9:"thumbnail";s:99:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png";s:12:"tmpl_created";i:1494352131;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:158;s:16:"popularity_index";i:447;s:11:"trend_index";i:657;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:579;a:15:{s:2:"id";i:7884;s:5:"title";s:9:"footer 05";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg";s:12:"tmpl_created";i:1524582944;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/footer-05/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:2:"[]";s:10:"menu_order";i:158;s:16:"popularity_index";i:92;s:11:"trend_index";i:109;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:580;a:15:{s:2:"id";i:906;s:5:"title";s:29:"Landing Page &#8211;  Coacher";s:9:"thumbnail";s:80:"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png";s:12:"tmpl_created";i:1494352066;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:159;s:16:"popularity_index";i:302;s:11:"trend_index";i:397;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:581;a:15:{s:2:"id";i:7892;s:5:"title";s:9:"footer 06";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg";s:12:"tmpl_created";i:1524583015;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/footer-06/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:2:"[]";s:10:"menu_order";i:159;s:16:"popularity_index";i:132;s:11:"trend_index";i:146;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:582;a:15:{s:2:"id";i:879;s:5:"title";s:41:"Landing Page &#8211; Financial Consultant";s:9:"thumbnail";s:94:"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png";s:12:"tmpl_created";i:1494352064;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:160;s:16:"popularity_index";i:305;s:11:"trend_index";i:406;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:583;a:15:{s:2:"id";i:7904;s:5:"title";s:9:"footer 07";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg";s:12:"tmpl_created";i:1524582814;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/footer-07/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:2:"[]";s:10:"menu_order";i:160;s:16:"popularity_index";i:203;s:11:"trend_index";i:186;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:584;a:15:{s:2:"id";i:926;s:5:"title";s:33:"Landing Page &#8211; Private Chef";s:9:"thumbnail";s:86:"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png";s:12:"tmpl_created";i:1494352068;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:161;s:16:"popularity_index";i:461;s:11:"trend_index";i:549;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:585;a:15:{s:2:"id";i:7917;s:5:"title";s:9:"footer 08";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg";s:12:"tmpl_created";i:1524582788;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/footer-08/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:2:"[]";s:10:"menu_order";i:161;s:16:"popularity_index";i:89;s:11:"trend_index";i:144;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:586;a:15:{s:2:"id";i:1032;s:5:"title";s:27:"Landing Page &#8211; Agency";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png";s:12:"tmpl_created";i:1488810866;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:162;s:16:"popularity_index";i:462;s:11:"trend_index";i:715;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:587;a:15:{s:2:"id";i:7927;s:5:"title";s:9:"footer 09";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg";s:12:"tmpl_created";i:1524582691;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/footer-09/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:2:"[]";s:10:"menu_order";i:162;s:16:"popularity_index";i:178;s:11:"trend_index";i:100;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:588;a:15:{s:2:"id";i:730;s:5:"title";s:24:"Landing Page &#8211; App";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg";s:12:"tmpl_created";i:1485273430;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/landing-page-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:163;s:16:"popularity_index";i:386;s:11:"trend_index";i:614;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:589;a:15:{s:2:"id";i:643;s:5:"title";s:29:"Landing Page &#8211; Festival";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg";s:12:"tmpl_created";i:1481549290;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:164;s:16:"popularity_index";i:518;s:11:"trend_index";i:748;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:590;a:15:{s:2:"id";i:542;s:5:"title";s:28:"Landing Page &#8211; Wedding";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/10/0025.png";s:12:"tmpl_created";i:1477388484;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:165;s:16:"popularity_index";i:128;s:11:"trend_index";i:355;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:591;a:15:{s:2:"id";i:1187;s:5:"title";s:32:"Landing Page &#8211; Photography";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png";s:12:"tmpl_created";i:1490707385;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:166;s:16:"popularity_index";i:53;s:11:"trend_index";i:196;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:592;a:15:{s:2:"id";i:641;s:5:"title";s:28:"Landing Page &#8211; Fashion";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg";s:12:"tmpl_created";i:1481549264;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:167;s:16:"popularity_index";i:355;s:11:"trend_index";i:480;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:593;a:15:{s:2:"id";i:189;s:5:"title";s:30:"Landing Page &#8211; Tourism 1";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0005.png";s:12:"tmpl_created";i:1470820715;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:168;s:16:"popularity_index";i:17;s:11:"trend_index";i:107;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:594;a:15:{s:2:"id";i:1547;s:5:"title";s:30:"Landing Page &#8211; Tourism 2";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png";s:12:"tmpl_created";i:1494352115;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:169;s:16:"popularity_index";i:377;s:11:"trend_index";i:491;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:595;a:15:{s:2:"id";i:4676;s:5:"title";s:8:"Footer 7";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png";s:12:"tmpl_created";i:1522014215;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/footer_7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:10:"["Footer"]";s:10:"menu_order";i:169;s:16:"popularity_index";i:237;s:11:"trend_index";i:346;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:596;a:15:{s:2:"id";i:1546;s:5:"title";s:30:"Landing Page &#8211; Tourism 3";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png";s:12:"tmpl_created";i:1494352116;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:170;s:16:"popularity_index";i:550;s:11:"trend_index";i:690;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:597;a:15:{s:2:"id";i:7627;s:5:"title";s:8:"Footer 8";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png";s:12:"tmpl_created";i:1521547332;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/footer-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:10:"["Footer"]";s:10:"menu_order";i:170;s:16:"popularity_index";i:100;s:11:"trend_index";i:83;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:598;a:15:{s:2:"id";i:1545;s:5:"title";s:30:"Landing Page &#8211; Tourism 4";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png";s:12:"tmpl_created";i:1494352118;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:171;s:16:"popularity_index";i:425;s:11:"trend_index";i:404;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:599;a:15:{s:2:"id";i:7638;s:5:"title";s:8:"Footer 9";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png";s:12:"tmpl_created";i:1521547502;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/footer-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:10:"["Footer"]";s:10:"menu_order";i:171;s:16:"popularity_index";i:124;s:11:"trend_index";i:147;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:600;a:15:{s:2:"id";i:11424;s:5:"title";s:3:"GYM";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png";s:12:"tmpl_created";i:1567393309;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/gym-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:13:"["404","Gym"]";s:10:"menu_order";i:172;s:16:"popularity_index";i:679;s:11:"trend_index";i:769;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:601;a:15:{s:2:"id";i:2714;s:5:"title";s:30:"Landing Page &#8211; Tourism 5";s:9:"thumbnail";s:86:"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png";s:12:"tmpl_created";i:1509631782;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:172;s:16:"popularity_index";i:415;s:11:"trend_index";i:584;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:602;a:15:{s:2:"id";i:195;s:5:"title";s:28:"Landing Page &#8211; Product";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0006.png";s:12:"tmpl_created";i:1470820765;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:173;s:16:"popularity_index";i:72;s:11:"trend_index";i:242;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:603;a:15:{s:2:"id";i:11435;s:5:"title";s:3:"GYM";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png";s:12:"tmpl_created";i:1567393296;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/gym-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:7:"["Gym"]";s:10:"menu_order";i:173;s:16:"popularity_index";i:441;s:11:"trend_index";i:507;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:604;a:15:{s:2:"id";i:197;s:5:"title";s:34:"Landing Page &#8211; Real Estate 1";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0007.png";s:12:"tmpl_created";i:1470825711;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:174;s:16:"popularity_index";i:162;s:11:"trend_index";i:366;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:605;a:15:{s:2:"id";i:11445;s:5:"title";s:3:"GYM";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png";s:12:"tmpl_created";i:1567393229;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/gym-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:7:"["Gym"]";s:10:"menu_order";i:174;s:16:"popularity_index";i:452;s:11:"trend_index";i:479;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:606;a:15:{s:2:"id";i:1193;s:5:"title";s:34:"Landing Page &#8211; Real Estate 2";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png";s:12:"tmpl_created";i:1490707422;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:175;s:16:"popularity_index";i:86;s:11:"trend_index";i:245;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:607;a:15:{s:2:"id";i:11453;s:5:"title";s:3:"GYM";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png";s:12:"tmpl_created";i:1567393224;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/blocks/gym-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:16:"["Footer","Gym"]";s:10:"menu_order";i:175;s:16:"popularity_index";i:270;s:11:"trend_index";i:331;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:608;a:15:{s:2:"id";i:1415;s:5:"title";s:34:"Landing Page &#8211; Real Estate 3";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png";s:12:"tmpl_created";i:1494352106;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:176;s:16:"popularity_index";i:381;s:11:"trend_index";i:462;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:609;a:15:{s:2:"id";i:11461;s:5:"title";s:3:"GYM";s:9:"thumbnail";s:83:"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png";s:12:"tmpl_created";i:1567393219;s:6:"author";s:9:"Elementor";s:3:"url";s:100:"https://library.elementor.com/blocks/gym/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:16:"["Gym","Header"]";s:10:"menu_order";i:176;s:16:"popularity_index";i:201;s:11:"trend_index";i:135;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:610;a:15:{s:2:"id";i:1414;s:5:"title";s:34:"Landing Page &#8211; Real Estate 4";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png";s:12:"tmpl_created";i:1494352107;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:177;s:16:"popularity_index";i:573;s:11:"trend_index";i:670;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:611;a:15:{s:2:"id";i:7596;s:5:"title";s:8:"Header 1";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg";s:12:"tmpl_created";i:1521546999;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/header-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:10:"["Header"]";s:10:"menu_order";i:177;s:16:"popularity_index";i:33;s:11:"trend_index";i:17;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:612;a:15:{s:2:"id";i:1413;s:5:"title";s:34:"Landing Page &#8211; Real Estate 5";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png";s:12:"tmpl_created";i:1494352109;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:150:"["Agent","Business","clean","corporate","flat","google maps","homes","Landing Pages","listing","modern","Real estate","Realestate","realtor","realty"]";s:10:"menu_order";i:178;s:16:"popularity_index";i:486;s:11:"trend_index";i:444;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:613;a:15:{s:2:"id";i:7801;s:5:"title";s:9:"header 10";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg";s:12:"tmpl_created";i:1524583659;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/header-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:2:"[]";s:10:"menu_order";i:178;s:16:"popularity_index";i:51;s:11:"trend_index";i:14;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:614;a:15:{s:2:"id";i:1573;s:5:"title";s:29:"Landing Page &#8211; Coupon 1";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png";s:12:"tmpl_created";i:1494352133;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/landing-page-coupon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:179;s:16:"popularity_index";i:594;s:11:"trend_index";i:687;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:615;a:15:{s:2:"id";i:7812;s:5:"title";s:9:"header 11";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg";s:12:"tmpl_created";i:1524583298;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/header-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:2:"[]";s:10:"menu_order";i:179;s:16:"popularity_index";i:96;s:11:"trend_index";i:103;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:616;a:15:{s:2:"id";i:1572;s:5:"title";s:29:"Landing Page &#8211; Coupon 2";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png";s:12:"tmpl_created";i:1494352134;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:180;s:16:"popularity_index";i:632;s:11:"trend_index";i:774;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:617;a:15:{s:2:"id";i:7825;s:5:"title";s:9:"header 12";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg";s:12:"tmpl_created";i:1524583273;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/header-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:2:"[]";s:10:"menu_order";i:180;s:16:"popularity_index";i:63;s:11:"trend_index";i:75;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:618;a:15:{s:2:"id";i:1570;s:5:"title";s:29:"Landing Page &#8211; Coupon 3";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png";s:12:"tmpl_created";i:1494352136;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:181;s:16:"popularity_index";i:674;s:11:"trend_index";i:785;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:619;a:15:{s:2:"id";i:9127;s:5:"title";s:9:"header 13";s:9:"thumbnail";s:86:"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png";s:12:"tmpl_created";i:1532428699;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/header-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:2:"[]";s:10:"menu_order";i:181;s:16:"popularity_index";i:61;s:11:"trend_index";i:58;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:620;a:15:{s:2:"id";i:1571;s:5:"title";s:29:"Landing Page &#8211; Coupon 4";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png";s:12:"tmpl_created";i:1494352138;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:182;s:16:"popularity_index";i:647;s:11:"trend_index";i:737;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:621;a:15:{s:2:"id";i:7615;s:5:"title";s:8:"Header 2";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg";s:12:"tmpl_created";i:1521547237;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/header-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:10:"["Header"]";s:10:"menu_order";i:182;s:16:"popularity_index";i:30;s:11:"trend_index";i:33;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:622;a:15:{s:2:"id";i:192;s:5:"title";s:28:"Landing Page &#8211; Webinar";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0015.png";s:12:"tmpl_created";i:1470820734;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:17:"["Landing Pages"]";s:10:"menu_order";i:183;s:16:"popularity_index";i:141;s:11:"trend_index";i:388;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:623;a:15:{s:2:"id";i:7713;s:5:"title";s:8:"header 3";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg";s:12:"tmpl_created";i:1524584780;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/header-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:2:"[]";s:10:"menu_order";i:183;s:16:"popularity_index";i:43;s:11:"trend_index";i:28;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:624;a:15:{s:2:"id";i:2141;s:5:"title";s:32:"Contact &#8211; Delivery Company";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png";s:12:"tmpl_created";i:1499774122;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:184;s:16:"popularity_index";i:363;s:11:"trend_index";i:678;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:625;a:15:{s:2:"id";i:7724;s:5:"title";s:8:"header 4";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg";s:12:"tmpl_created";i:1524583367;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/header-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:2:"[]";s:10:"menu_order";i:184;s:16:"popularity_index";i:24;s:11:"trend_index";i:13;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:626;a:15:{s:2:"id";i:137;s:5:"title";s:22:"Contact &#8211; Modern";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0013.png";s:12:"tmpl_created";i:1470829828;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:185;s:16:"popularity_index";i:55;s:11:"trend_index";i:210;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:627;a:15:{s:2:"id";i:7734;s:5:"title";s:8:"header 5";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg";s:12:"tmpl_created";i:1524583436;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/header-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:2:"[]";s:10:"menu_order";i:185;s:16:"popularity_index";i:36;s:11:"trend_index";i:18;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:628;a:15:{s:2:"id";i:256;s:5:"title";s:26:"Contact &#8211; Restaurant";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0011.png";s:12:"tmpl_created";i:1470829796;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:186;s:16:"popularity_index";i:154;s:11:"trend_index";i:370;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:629;a:15:{s:2:"id";i:7744;s:5:"title";s:8:"Header 6";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg";s:12:"tmpl_created";i:1524584784;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/header-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:2:"[]";s:10:"menu_order";i:186;s:16:"popularity_index";i:65;s:11:"trend_index";i:94;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:630;a:15:{s:2:"id";i:2150;s:5:"title";s:25:"Contact &#8211; Cake Shop";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png";s:12:"tmpl_created";i:1499774127;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:187;s:16:"popularity_index";i:85;s:11:"trend_index";i:247;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:631;a:15:{s:2:"id";i:7754;s:5:"title";s:8:"header 7";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg";s:12:"tmpl_created";i:1524583712;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/header-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:2:"[]";s:10:"menu_order";i:187;s:16:"popularity_index";i:111;s:11:"trend_index";i:143;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:632;a:15:{s:2:"id";i:223;s:5:"title";s:21:"Contact &#8211; Hotel";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0002.png";s:12:"tmpl_created";i:1470820471;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:188;s:16:"popularity_index";i:157;s:11:"trend_index";i:354;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:633;a:15:{s:2:"id";i:7771;s:5:"title";s:8:"header 8";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg";s:12:"tmpl_created";i:1524583540;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/header-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:2:"[]";s:10:"menu_order";i:188;s:16:"popularity_index";i:91;s:11:"trend_index";i:60;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:634;a:15:{s:2:"id";i:7787;s:5:"title";s:8:"header 9";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg";s:12:"tmpl_created";i:1524583598;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/header-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:2:"[]";s:10:"menu_order";i:189;s:16:"popularity_index";i:102;s:11:"trend_index";i:78;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:635;a:15:{s:2:"id";i:184;s:5:"title";s:23:"Services &#8211; Moving";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0017.png";s:12:"tmpl_created";i:1470829889;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:190;s:16:"popularity_index";i:26;s:11:"trend_index";i:89;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:636;a:15:{s:2:"id";i:6266;s:5:"title";s:6:"Hero 1";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png";s:12:"tmpl_created";i:1520443695;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/hero-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"hero";s:4:"tags";s:8:"["hero"]";s:10:"menu_order";i:190;s:16:"popularity_index";i:52;s:11:"trend_index";i:35;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:637;a:15:{s:2:"id";i:5783;s:5:"title";s:7:"Hero 10";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png";s:12:"tmpl_created";i:1520443586;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/hero-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"hero";s:4:"tags";s:2:"[]";s:10:"menu_order";i:191;s:16:"popularity_index";i:365;s:11:"trend_index";i:567;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:638;a:15:{s:2:"id";i:625;s:5:"title";s:31:"Services &#8211; Cake Shop Menu";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg";s:12:"tmpl_created";i:1481549196;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:191;s:16:"popularity_index";i:642;s:11:"trend_index";i:733;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:639;a:15:{s:2:"id";i:5773;s:5:"title";s:7:"Hero 11";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png";s:12:"tmpl_created";i:1520443584;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/hero-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"hero";s:4:"tags";s:2:"[]";s:10:"menu_order";i:192;s:16:"popularity_index";i:39;s:11:"trend_index";i:179;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:640;a:15:{s:2:"id";i:187;s:5:"title";s:20:"Services &#8211; Fun";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0001.png";s:12:"tmpl_created";i:1470829892;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:192;s:16:"popularity_index";i:109;s:11:"trend_index";i:338;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:641;a:15:{s:2:"id";i:238;s:5:"title";s:27:"Services &#8211; Consulting";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0014.png";s:12:"tmpl_created";i:1470829865;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:193;s:16:"popularity_index";i:25;s:11:"trend_index";i:51;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:642;a:15:{s:2:"id";i:5238;s:5:"title";s:7:"Hero 12";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png";s:12:"tmpl_created";i:1520443468;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/hero-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"hero";s:4:"tags";s:8:"["hero"]";s:10:"menu_order";i:193;s:16:"popularity_index";i:611;s:11:"trend_index";i:555;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:643;a:15:{s:2:"id";i:647;s:5:"title";s:33:"Services &#8211; Coffee Shop Menu";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg";s:12:"tmpl_created";i:1481549320;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:194;s:16:"popularity_index";i:517;s:11:"trend_index";i:529;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:644;a:15:{s:2:"id";i:6274;s:5:"title";s:6:"Hero 2";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png";s:12:"tmpl_created";i:1520443698;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/hero-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"hero";s:4:"tags";s:8:"["hero"]";s:10:"menu_order";i:194;s:16:"popularity_index";i:87;s:11:"trend_index";i:88;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:645;a:15:{s:2:"id";i:6239;s:5:"title";s:6:"Hero 3";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png";s:12:"tmpl_created";i:1520443689;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/hero-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"hero";s:4:"tags";s:8:"["hero"]";s:10:"menu_order";i:195;s:16:"popularity_index";i:23;s:11:"trend_index";i:34;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:646;a:15:{s:2:"id";i:2138;s:5:"title";s:33:"Services &#8211; Delivery Company";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png";s:12:"tmpl_created";i:1499774119;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:195;s:16:"popularity_index";i:456;s:11:"trend_index";i:545;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:647;a:15:{s:2:"id";i:823;s:5:"title";s:19:"Pricing &#8211; App";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg";s:12:"tmpl_created";i:1485272966;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:196;s:16:"popularity_index";i:384;s:11:"trend_index";i:416;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:648;a:15:{s:2:"id";i:6258;s:5:"title";s:6:"Hero 4";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png";s:12:"tmpl_created";i:1520443693;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/hero-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"hero";s:4:"tags";s:8:"["hero"]";s:10:"menu_order";i:196;s:16:"popularity_index";i:479;s:11:"trend_index";i:470;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:649;a:15:{s:2:"id";i:824;s:5:"title";s:24:"Pricing &#8211; Software";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png";s:12:"tmpl_created";i:1485272900;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:197;s:16:"popularity_index";i:409;s:11:"trend_index";i:534;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:650;a:15:{s:2:"id";i:6249;s:5:"title";s:6:"Hero 5";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png";s:12:"tmpl_created";i:1520443691;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/hero-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"hero";s:4:"tags";s:8:"["hero"]";s:10:"menu_order";i:197;s:16:"popularity_index";i:56;s:11:"trend_index";i:85;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:651;a:15:{s:2:"id";i:825;s:5:"title";s:24:"Product &#8211; Speakers";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg";s:12:"tmpl_created";i:1485272513;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:198;s:16:"popularity_index";i:439;s:11:"trend_index";i:418;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:652;a:15:{s:2:"id";i:6230;s:5:"title";s:6:"Hero 6";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png";s:12:"tmpl_created";i:1520443687;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/hero-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"hero";s:4:"tags";s:8:"["hero"]";s:10:"menu_order";i:198;s:16:"popularity_index";i:406;s:11:"trend_index";i:542;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:653;a:15:{s:2:"id";i:5801;s:5:"title";s:6:"Hero 7";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png";s:12:"tmpl_created";i:1520443589;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"hero";s:4:"tags";s:8:"["hero"]";s:10:"menu_order";i:199;s:16:"popularity_index";i:15;s:11:"trend_index";i:37;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:654;a:15:{s:2:"id";i:245;s:5:"title";s:21:"Product &#8211; Clean";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2016/08/0020.png";s:12:"tmpl_created";i:1470829876;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/product-clean/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:48:"["Fast","minimal","minimalistic","seo","simple"]";s:10:"menu_order";i:199;s:16:"popularity_index";i:107;s:11:"trend_index";i:276;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:655;a:15:{s:2:"id";i:5811;s:5:"title";s:6:"Hero 8";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png";s:12:"tmpl_created";i:1520443591;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/hero-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"hero";s:4:"tags";s:2:"[]";s:10:"menu_order";i:200;s:16:"popularity_index";i:105;s:11:"trend_index";i:86;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:656;a:15:{s:2:"id";i:1075;s:5:"title";s:19:"Shop &#8211; Sweets";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png";s:12:"tmpl_created";i:1488810871;s:6:"author";s:9:"Elementor";s:3:"url";s:101:"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:154:"["bakery","beverage","Business","cafe","candy bar","catering","Delivery Service","Food","online shop","pastry","Restaurant","store","sweet shop","sweets"]";s:10:"menu_order";i:200;s:16:"popularity_index";i:68;s:11:"trend_index";i:174;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:657;a:15:{s:2:"id";i:5792;s:5:"title";s:6:"Hero 9";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png";s:12:"tmpl_created";i:1520443588;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/hero-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"hero";s:4:"tags";s:2:"[]";s:10:"menu_order";i:201;s:16:"popularity_index";i:225;s:11:"trend_index";i:244;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:658;a:15:{s:2:"id";i:1051;s:5:"title";s:24:"Blog Post &#8211; Launch";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png";s:12:"tmpl_created";i:1488810869;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:211:"["Agency","bootstrap","Business","corporate","Landing Pages","launch","Marketing Campaign","Marketing Landing Page","marketing template landing page","Product launch","software","Startup","startup landing page"]";s:10:"menu_order";i:201;s:16:"popularity_index";i:16;s:11:"trend_index";i:27;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:659;a:15:{s:2:"id";i:1245;s:5:"title";s:13:"Coming Soon 1";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png";s:12:"tmpl_created";i:1491207184;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:202;s:16:"popularity_index";i:257;s:11:"trend_index";i:252;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:660;a:15:{s:2:"id";i:13251;s:5:"title";s:27:"Interior Design &#8211; 404";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2020/04/404.png";s:12:"tmpl_created";i:1586148737;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/blocks/interior-design-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:30:"["Business","interior design"]";s:10:"menu_order";i:202;s:16:"popularity_index";i:730;s:11:"trend_index";i:795;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:661;a:15:{s:2:"id";i:1247;s:5:"title";s:13:"Coming Soon 2";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png";s:12:"tmpl_created";i:1491207138;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:203;s:16:"popularity_index";i:35;s:11:"trend_index";i:48;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:662;a:15:{s:2:"id";i:13244;s:5:"title";s:30:"Interior Design &#8211; Footer";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png";s:12:"tmpl_created";i:1586148742;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/blocks/interior-design-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:39:"["Business","Footer","interior design"]";s:10:"menu_order";i:203;s:16:"popularity_index";i:322;s:11:"trend_index";i:178;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:663;a:15:{s:2:"id";i:1248;s:5:"title";s:13:"Coming Soon 3";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png";s:12:"tmpl_created";i:1491207050;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:204;s:16:"popularity_index";i:427;s:11:"trend_index";i:601;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:664;a:15:{s:2:"id";i:13236;s:5:"title";s:30:"Interior Design &#8211; Header";s:9:"thumbnail";s:83:"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png";s:12:"tmpl_created";i:1586148746;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/blocks/interior-design-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:39:"["Business","Header","interior design"]";s:10:"menu_order";i:204;s:16:"popularity_index";i:146;s:11:"trend_index";i:64;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:665;a:15:{s:2:"id";i:1249;s:5:"title";s:13:"Coming Soon 4";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png";s:12:"tmpl_created";i:1491207380;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:205;s:16:"popularity_index";i:469;s:11:"trend_index";i:638;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:666;a:15:{s:2:"id";i:13259;s:5:"title";s:36:"Interior Design &#8211; News Archive";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png";s:12:"tmpl_created";i:1586148733;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:30:"["Business","interior design"]";s:10:"menu_order";i:205;s:16:"popularity_index";i:436;s:11:"trend_index";i:132;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:667;a:15:{s:2:"id";i:1250;s:5:"title";s:13:"Coming Soon 5";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png";s:12:"tmpl_created";i:1491207450;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:206;s:16:"popularity_index";i:82;s:11:"trend_index";i:104;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:668;a:15:{s:2:"id";i:13267;s:5:"title";s:35:"Interior Design &#8211; Single News";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2020/04/Post.png";s:12:"tmpl_created";i:1586148728;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:30:"["Business","interior design"]";s:10:"menu_order";i:206;s:16:"popularity_index";i:402;s:11:"trend_index";i:108;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:669;a:15:{s:2:"id";i:1260;s:5:"title";s:18:"Maintenance Mode 1";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png";s:12:"tmpl_created";i:1491207507;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/maintenance-mode-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:20:"["Maintenance mode"]";s:10:"menu_order";i:207;s:16:"popularity_index";i:506;s:11:"trend_index";i:623;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:670;a:15:{s:2:"id";i:13274;s:5:"title";s:38:"Interior Design &#8211; Single Project";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png";s:12:"tmpl_created";i:1586148723;s:6:"author";s:9:"Elementor";s:3:"url";s:127:"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:30:"["Business","interior design"]";s:10:"menu_order";i:207;s:16:"popularity_index";i:601;s:11:"trend_index";i:324;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:671;a:15:{s:2:"id";i:1261;s:5:"title";s:18:"Maintenance Mode 2";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png";s:12:"tmpl_created";i:1491207584;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/maintenance-mode-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:20:"["Maintenance mode"]";s:10:"menu_order";i:208;s:16:"popularity_index";i:98;s:11:"trend_index";i:164;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:672;a:15:{s:2:"id";i:14058;s:5:"title";s:36:"Japanese restaurant &#8211; 404 page";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg";s:12:"tmpl_created";i:1592290211;s:6:"author";s:9:"Elementor";s:3:"url";s:125:"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:38:"["404","Food","Japanese","Restaurant"]";s:10:"menu_order";i:208;s:16:"popularity_index";i:724;s:11:"trend_index";i:647;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:673;a:15:{s:2:"id";i:1272;s:5:"title";s:13:"Coming Soon 8";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png";s:12:"tmpl_created";i:1491207674;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:209;s:16:"popularity_index";i:296;s:11:"trend_index";i:317;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:674;a:15:{s:2:"id";i:14050;s:5:"title";s:34:"Japanese restaurant &#8211; Footer";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg";s:12:"tmpl_created";i:1592290247;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:41:"["Food","Footer","Japanese","Restaurant"]";s:10:"menu_order";i:209;s:16:"popularity_index";i:317;s:11:"trend_index";i:238;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:675;a:15:{s:2:"id";i:1279;s:5:"title";s:13:"Coming Soon 9";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png";s:12:"tmpl_created";i:1491207756;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:210;s:16:"popularity_index";i:160;s:11:"trend_index";i:403;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:676;a:15:{s:2:"id";i:14042;s:5:"title";s:34:"Japanese restaurant &#8211; Header";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg";s:12:"tmpl_created";i:1592290277;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:41:"["Food","Header","Japanese","Restaurant"]";s:10:"menu_order";i:210;s:16:"popularity_index";i:411;s:11:"trend_index";i:274;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:677;a:15:{s:2:"id";i:1745;s:5:"title";s:14:"Coming Soon 10";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png";s:12:"tmpl_created";i:1494849745;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:211;s:16:"popularity_index";i:292;s:11:"trend_index";i:371;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:678;a:15:{s:2:"id";i:12164;s:5:"title";s:20:"Law Firm &#8211; 404";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2019/11/404.png";s:12:"tmpl_created";i:1572846979;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/blocks/law-firm-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:24:"["404","Law","Law Firm"]";s:10:"menu_order";i:211;s:16:"popularity_index";i:704;s:11:"trend_index";i:716;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:679;a:15:{s:2:"id";i:1742;s:5:"title";s:12:"Login Page 1";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png";s:12:"tmpl_created";i:1494849744;s:6:"author";s:9:"Elementor";s:3:"url";s:100:"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:212;s:16:"popularity_index";i:470;s:11:"trend_index";i:616;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:680;a:15:{s:2:"id";i:12170;s:5:"title";s:23:"Law Firm &#8211; Archiv";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png";s:12:"tmpl_created";i:1572846967;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:18:"["Law","Law Firm"]";s:10:"menu_order";i:212;s:16:"popularity_index";i:431;s:11:"trend_index";i:294;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:681;a:15:{s:2:"id";i:1748;s:5:"title";s:12:"Login Page 2";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png";s:12:"tmpl_created";i:1494849742;s:6:"author";s:9:"Elementor";s:3:"url";s:102:"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:213;s:16:"popularity_index";i:313;s:11:"trend_index";i:306;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:682;a:15:{s:2:"id";i:12179;s:5:"title";s:23:"Law Firm &#8211; Footer";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2019/11/footer.png";s:12:"tmpl_created";i:1572846958;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/blocks/law-firm-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:27:"["Footer","Law","Law Firm"]";s:10:"menu_order";i:213;s:16:"popularity_index";i:388;s:11:"trend_index";i:240;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:683;a:15:{s:2:"id";i:3963;s:5:"title";s:32:"Restaurant Site &#8211; Homepage";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png";s:12:"tmpl_created";i:1516284821;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:109:"["bar","cafe","Cooking","drink","Events","Fast Food","Food","menu","modern","reservation","Shop","snack bar"]";s:10:"menu_order";i:214;s:16:"popularity_index";i:238;s:11:"trend_index";i:61;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:684;a:15:{s:2:"id";i:12194;s:5:"title";s:23:"Law Firm &#8211; Header";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png";s:12:"tmpl_created";i:1572846935;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/blocks/law-firm-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:27:"["Header","Law","Law Firm"]";s:10:"menu_order";i:214;s:16:"popularity_index";i:80;s:11:"trend_index";i:39;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:685;a:15:{s:2:"id";i:12203;s:5:"title";s:30:"Law Firm &#8211; Search Archiv";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png";s:12:"tmpl_created";i:1572846925;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:18:"["Law","Law Firm"]";s:10:"menu_order";i:215;s:16:"popularity_index";i:493;s:11:"trend_index";i:433;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:686;a:15:{s:2:"id";i:3969;s:5:"title";s:28:"Restaurant Site &#8211; Menu";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png";s:12:"tmpl_created";i:1516284829;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:109:"["bar","cafe","Cooking","drink","Events","Fast Food","Food","menu","modern","reservation","Shop","snack bar"]";s:10:"menu_order";i:215;s:16:"popularity_index";i:440;s:11:"trend_index";i:543;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:687;a:15:{s:2:"id";i:12212;s:5:"title";s:28:"Law Firm &#8211; Single Post";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2019/11/single.png";s:12:"tmpl_created";i:1572846914;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:18:"["Law","Law Firm"]";s:10:"menu_order";i:216;s:16:"popularity_index";i:326;s:11:"trend_index";i:214;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:688;a:15:{s:2:"id";i:3966;s:5:"title";s:29:"Restaurant Site &#8211; About";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png";s:12:"tmpl_created";i:1516284839;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:109:"["bar","cafe","Cooking","drink","Events","Fast Food","Food","menu","modern","reservation","Shop","snack bar"]";s:10:"menu_order";i:216;s:16:"popularity_index";i:275;s:11:"trend_index";i:528;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:689;a:15:{s:2:"id";i:3972;s:5:"title";s:31:"Restaurant Site &#8211; Contact";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png";s:12:"tmpl_created";i:1516284847;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:109:"["bar","cafe","Cooking","drink","Events","Fast Food","Food","menu","modern","reservation","Shop","snack bar"]";s:10:"menu_order";i:217;s:16:"popularity_index";i:405;s:11:"trend_index";i:588;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:690;a:15:{s:2:"id";i:14772;s:5:"title";s:35:"Luxury Real Estate &#8211; 404 page";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2020/07/404.png";s:12:"tmpl_created";i:1595315728;s:6:"author";s:9:"Elementor";s:3:"url";s:124:"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:34:"["404","Real estate","Realestate"]";s:10:"menu_order";i:217;s:16:"popularity_index";i:759;s:11:"trend_index";i:720;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:691;a:15:{s:2:"id";i:2080;s:5:"title";s:27:"Ski Resort &#8211; Homepage";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png";s:12:"tmpl_created";i:1508161124;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:218;s:16:"popularity_index";i:358;s:11:"trend_index";i:612;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:692;a:15:{s:2:"id";i:14779;s:5:"title";s:33:"Luxury Real Estate &#8211; Footer";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png";s:12:"tmpl_created";i:1595315743;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:37:"["Footer","Real estate","Realestate"]";s:10:"menu_order";i:218;s:16:"popularity_index";i:536;s:11:"trend_index";i:505;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:693;a:15:{s:2:"id";i:14790;s:5:"title";s:33:"Luxury Real Estate &#8211; Header";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/07/Header.png";s:12:"tmpl_created";i:1595315760;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:37:"["Header","Real estate","Realestate"]";s:10:"menu_order";i:219;s:16:"popularity_index";i:101;s:11:"trend_index";i:157;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:694;a:15:{s:2:"id";i:2088;s:5:"title";s:24:"Ski Resort &#8211; About";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png";s:12:"tmpl_created";i:1508161129;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:219;s:16:"popularity_index";i:487;s:11:"trend_index";i:683;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:695;a:15:{s:2:"id";i:14809;s:5:"title";s:45:"Luxury Real Estate &#8211; Properties Archive";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png";s:12:"tmpl_created";i:1595315826;s:6:"author";s:9:"Elementor";s:3:"url";s:134:"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:28:"["Real estate","Realestate"]";s:10:"menu_order";i:220;s:16:"popularity_index";i:414;s:11:"trend_index";i:420;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:696;a:15:{s:2:"id";i:2085;s:5:"title";s:27:"Ski Resort &#8211; Services";s:9:"thumbnail";s:80:"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png";s:12:"tmpl_created";i:1508161134;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:220;s:16:"popularity_index";i:620;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:697;a:15:{s:2:"id";i:14816;s:5:"title";s:47:"Luxury Real Estate &#8211; Property single post";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png";s:12:"tmpl_created";i:1595315847;s:6:"author";s:9:"Elementor";s:3:"url";s:136:"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:28:"["Real estate","Realestate"]";s:10:"menu_order";i:221;s:16:"popularity_index";i:541;s:11:"trend_index";i:665;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:698;a:15:{s:2:"id";i:2462;s:5:"title";s:23:"Architect &#8211; About";s:9:"thumbnail";s:80:"https://library.elementor.com/wp-content/uploads/2017/10/architect-–-about.png";s:12:"tmpl_created";i:1508243317;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:221;s:16:"popularity_index";i:364;s:11:"trend_index";i:383;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:699;a:15:{s:2:"id";i:14799;s:5:"title";s:38:"Luxury Real Estate &#8211; single post";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2020/07/Post.png";s:12:"tmpl_created";i:1595315792;s:6:"author";s:9:"Elementor";s:3:"url";s:127:"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:28:"["Real estate","Realestate"]";s:10:"menu_order";i:222;s:16:"popularity_index";i:369;s:11:"trend_index";i:441;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:700;a:15:{s:2:"id";i:2362;s:5:"title";s:26:"Architect &#8211; Projects";s:9:"thumbnail";s:79:"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png";s:12:"tmpl_created";i:1508243335;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:222;s:16:"popularity_index";i:460;s:11:"trend_index";i:443;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:701;a:15:{s:2:"id";i:614;s:5:"title";s:25:"Architect &#8211; Contact";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg";s:12:"tmpl_created";i:1481549169;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:223;s:16:"popularity_index";i:335;s:11:"trend_index";i:446;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:702;a:15:{s:2:"id";i:12635;s:5:"title";s:20:"Magazine &#8211; 404";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png";s:12:"tmpl_created";i:1579060746;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/blocks/magazine-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:25:"["404","Blog","Magazine"]";s:10:"menu_order";i:223;s:16:"popularity_index";i:645;s:11:"trend_index";i:734;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:703;a:15:{s:2:"id";i:2126;s:5:"title";s:37:"Construction Company &#8211; Homepage";s:9:"thumbnail";s:91:"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png";s:12:"tmpl_created";i:1508325849;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:224;s:16:"popularity_index";i:271;s:11:"trend_index";i:311;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:704;a:15:{s:2:"id";i:12643;s:5:"title";s:24:"Magazine &#8211; Archiv1";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png";s:12:"tmpl_created";i:1579060737;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:19:"["Blog","Magazine"]";s:10:"menu_order";i:224;s:16:"popularity_index";i:346;s:11:"trend_index";i:272;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:705;a:15:{s:2:"id";i:2129;s:5:"title";s:34:"Construction Company &#8211; About";s:9:"thumbnail";s:87:"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png";s:12:"tmpl_created";i:1508325881;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:225;s:16:"popularity_index";i:321;s:11:"trend_index";i:448;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:706;a:15:{s:2:"id";i:12669;s:5:"title";s:23:"Magazine &#8211; Footer";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png";s:12:"tmpl_created";i:1579060715;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/blocks/magazine-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:28:"["Blog","Footer","Magazine"]";s:10:"menu_order";i:225;s:16:"popularity_index";i:442;s:11:"trend_index";i:349;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:707;a:15:{s:2:"id";i:2135;s:5:"title";s:36:"Construction Company &#8211; Contact";s:9:"thumbnail";s:89:"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png";s:12:"tmpl_created";i:1508325922;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:226;s:16:"popularity_index";i:370;s:11:"trend_index";i:473;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:708;a:15:{s:2:"id";i:12678;s:5:"title";s:23:"Magazine &#8211; Header";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png";s:12:"tmpl_created";i:1579060701;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/blocks/magazine-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:28:"["Blog","Header","Magazine"]";s:10:"menu_order";i:226;s:16:"popularity_index";i:295;s:11:"trend_index";i:197;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:709;a:15:{s:2:"id";i:2094;s:5:"title";s:28:"Plants Shop &#8211; Homepage";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png";s:12:"tmpl_created";i:1509621053;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:227;s:16:"popularity_index";i:269;s:11:"trend_index";i:254;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:710;a:15:{s:2:"id";i:12661;s:5:"title";s:23:"Magazine &#8211; Search";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png";s:12:"tmpl_created";i:1579060722;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/blocks/magazine-search/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:19:"["Blog","Magazine"]";s:10:"menu_order";i:227;s:16:"popularity_index";i:396;s:11:"trend_index";i:509;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:711;a:15:{s:2:"id";i:2120;s:5:"title";s:25:"Plants Shop &#8211; About";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png";s:12:"tmpl_created";i:1509631820;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:228;s:16:"popularity_index";i:376;s:11:"trend_index";i:573;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:712;a:15:{s:2:"id";i:12688;s:5:"title";s:30:"Magazine &#8211; Single Post 1";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png";s:12:"tmpl_created";i:1579060692;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:19:"["Blog","Magazine"]";s:10:"menu_order";i:228;s:16:"popularity_index";i:342;s:11:"trend_index";i:175;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:713;a:15:{s:2:"id";i:3153;s:5:"title";s:14:"Halloween Pack";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png";s:12:"tmpl_created";i:1508950132;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:229;s:16:"popularity_index";i:685;s:11:"trend_index";i:775;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:714;a:15:{s:2:"id";i:12699;s:5:"title";s:30:"Magazine &#8211; Single Post 2";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png";s:12:"tmpl_created";i:1579060680;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:19:"["Blog","Magazine"]";s:10:"menu_order";i:229;s:16:"popularity_index";i:348;s:11:"trend_index";i:129;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:715;a:15:{s:2:"id";i:3338;s:5:"title";s:31:"Black Friday &#8211; Nature Set";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png";s:12:"tmpl_created";i:1511203351;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:230;s:16:"popularity_index";i:604;s:11:"trend_index";i:786;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:716;a:15:{s:2:"id";i:12707;s:5:"title";s:30:"Magazine &#8211; Single Post 3";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png";s:12:"tmpl_created";i:1579060669;s:6:"author";s:9:"Elementor";s:3:"url";s:119:"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:19:"["Blog","Magazine"]";s:10:"menu_order";i:230;s:16:"popularity_index";i:476;s:11:"trend_index";i:246;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:717;a:15:{s:2:"id";i:3339;s:5:"title";s:35:"Black Friday &#8211; Pop-Styled Set";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png";s:12:"tmpl_created";i:1511203636;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:231;s:16:"popularity_index";i:561;s:11:"trend_index";i:836;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:718;a:15:{s:2:"id";i:12716;s:5:"title";s:30:"Magazine &#8211; Single Post 3";s:9:"thumbnail";s:68:"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png";s:12:"tmpl_created";i:1579060659;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:19:"["Blog","Magazine"]";s:10:"menu_order";i:231;s:16:"popularity_index";i:513;s:11:"trend_index";i:489;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:719;a:15:{s:2:"id";i:3335;s:5:"title";s:31:"Black Friday &#8211; Retail Set";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png";s:12:"tmpl_created";i:1511203246;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:232;s:16:"popularity_index";i:560;s:11:"trend_index";i:680;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:720;a:15:{s:2:"id";i:12652;s:5:"title";s:17:"Magazine- Archiv2";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png";s:12:"tmpl_created";i:1579060730;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:19:"["Blog","Magazine"]";s:10:"menu_order";i:232;s:16:"popularity_index";i:525;s:11:"trend_index";i:585;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:721;a:15:{s:2:"id";i:3340;s:5:"title";s:41:"Black Friday &#8211; Software Product Set";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png";s:12:"tmpl_created";i:1511203713;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:233;s:16:"popularity_index";i:502;s:11:"trend_index";i:592;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:722;a:15:{s:2:"id";i:13361;s:5:"title";s:25:"Online Course &#8211; 404";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg";s:12:"tmpl_created";i:1587474710;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/blocks/online-course-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:35:"["404","Course Online","Education"]";s:10:"menu_order";i:233;s:16:"popularity_index";i:682;s:11:"trend_index";i:498;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:723;a:15:{s:2:"id";i:3517;s:5:"title";s:27:"Christmas &#8211; Gift Shop";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png";s:12:"tmpl_created";i:1513877937;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:234;s:16:"popularity_index";i:580;s:11:"trend_index";i:834;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:724;a:15:{s:2:"id";i:13387;s:5:"title";s:32:"Online Course &#8211; End Lesson";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg";s:12:"tmpl_created";i:1587474682;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:29:"["Course Online","Education"]";s:10:"menu_order";i:234;s:16:"popularity_index";i:653;s:11:"trend_index";i:408;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:725;a:15:{s:2:"id";i:3734;s:5:"title";s:28:"Christmas &#8211; Car Agency";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png";s:12:"tmpl_created";i:1514197794;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:235;s:16:"popularity_index";i:575;s:11:"trend_index";i:622;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:726;a:15:{s:2:"id";i:13369;s:5:"title";s:28:"Online Course &#8211; Footer";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg";s:12:"tmpl_created";i:1587474701;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/blocks/online-course-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:38:"["Course Online","Education","Footer"]";s:10:"menu_order";i:235;s:16:"popularity_index";i:389;s:11:"trend_index";i:308;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:727;a:15:{s:2:"id";i:3764;s:5:"title";s:33:"Christmas &#8211; Interior Design";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png";s:12:"tmpl_created";i:1514198234;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:236;s:16:"popularity_index";i:566;s:11:"trend_index";i:708;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:728;a:15:{s:2:"id";i:13378;s:5:"title";s:28:"Online Course &#8211; Header";s:9:"thumbnail";s:92:"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg";s:12:"tmpl_created";i:1587474693;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/blocks/online-course-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:38:"["Course Online","Education","Header"]";s:10:"menu_order";i:236;s:16:"popularity_index";i:492;s:11:"trend_index";i:519;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:729;a:15:{s:2:"id";i:3565;s:5:"title";s:27:"Christmas &#8211; Tree Shop";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png";s:12:"tmpl_created";i:1514204382;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:237;s:16:"popularity_index";i:455;s:11:"trend_index";i:469;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:730;a:15:{s:2:"id";i:13395;s:5:"title";s:34:"Online Course &#8211; Start Lesson";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg";s:12:"tmpl_created";i:1587474673;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:29:"["Course Online","Education"]";s:10:"menu_order";i:237;s:16:"popularity_index";i:672;s:11:"trend_index";i:578;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:731;a:15:{s:2:"id";i:3862;s:5:"title";s:35:"Christmas &#8211; Design Conference";s:9:"thumbnail";s:63:"https://library.elementor.com/wp-content/uploads/2017/12/q1.png";s:12:"tmpl_created";i:1514206745;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:238;s:16:"popularity_index";i:473;s:11:"trend_index";i:518;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:732;a:15:{s:2:"id";i:13089;s:5:"title";s:23:"Photography &#8211; 404";s:9:"thumbnail";s:66:"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png";s:12:"tmpl_created";i:1582091623;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/blocks/photography-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:33:"["404","Photography","portfolio"]";s:10:"menu_order";i:238;s:16:"popularity_index";i:702;s:11:"trend_index";i:706;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:733;a:15:{s:2:"id";i:3777;s:5:"title";s:39:"Christmas &#8211; Snowboard Competition";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png";s:12:"tmpl_created";i:1514205420;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:239;s:16:"popularity_index";i:509;s:11:"trend_index";i:682;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:734;a:15:{s:2:"id";i:13096;s:5:"title";s:32:"Photography &#8211; Archiv Media";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png";s:12:"tmpl_created";i:1582091742;s:6:"author";s:9:"Elementor";s:3:"url";s:121:"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:27:"["Photography","portfolio"]";s:10:"menu_order";i:239;s:16:"popularity_index";i:631;s:11:"trend_index";i:405;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:735;a:15:{s:2:"id";i:420;s:5:"title";s:11:"Hero UI Kit";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png";s:12:"tmpl_created";i:1475067229;s:6:"author";s:9:"Elementor";s:3:"url";s:101:"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:4:"page";s:7:"subtype";s:4:"page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:240;s:16:"popularity_index";i:22;s:11:"trend_index";i:160;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:736;a:15:{s:2:"id";i:13103;s:5:"title";s:26:"Photography &#8211; Footer";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png";s:12:"tmpl_created";i:1582091903;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/blocks/photography-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:36:"["Footer","Photography","portfolio"]";s:10:"menu_order";i:240;s:16:"popularity_index";i:422;s:11:"trend_index";i:230;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:737;a:15:{s:2:"id";i:13112;s:5:"title";s:26:"Photography &#8211; Header";s:9:"thumbnail";s:89:"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png";s:12:"tmpl_created";i:1582092483;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/blocks/photography-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:36:"["Header","Photography","portfolio"]";s:10:"menu_order";i:241;s:16:"popularity_index";i:325;s:11:"trend_index";i:205;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:738;a:15:{s:2:"id";i:13120;s:5:"title";s:31:"Photography &#8211; Single Post";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png";s:12:"tmpl_created";i:1582092351;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/blocks/photography-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:27:"["Photography","portfolio"]";s:10:"menu_order";i:242;s:16:"popularity_index";i:671;s:11:"trend_index";i:645;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:739;a:15:{s:2:"id";i:11807;s:5:"title";s:9:"Portfolio";s:9:"thumbnail";s:70:"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png";s:12:"tmpl_created";i:1569430070;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/blocks/portfolio-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:40:"["404","creative portfolio","portfolio"]";s:10:"menu_order";i:243;s:16:"popularity_index";i:480;s:11:"trend_index";i:497;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:740;a:15:{s:2:"id";i:11832;s:5:"title";s:9:"Portfolio";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png";s:12:"tmpl_created";i:1569430019;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/blocks/portfolio-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:43:"["creative portfolio","Footer","portfolio"]";s:10:"menu_order";i:244;s:16:"popularity_index";i:246;s:11:"trend_index";i:102;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:741;a:15:{s:2:"id";i:11847;s:5:"title";s:9:"Portfolio";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png";s:12:"tmpl_created";i:1569430010;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/portfolio-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:34:"["creative portfolio","portfolio"]";s:10:"menu_order";i:245;s:16:"popularity_index";i:336;s:11:"trend_index";i:455;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:742;a:15:{s:2:"id";i:11854;s:5:"title";s:9:"Portfolio";s:9:"thumbnail";s:71:"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png";s:12:"tmpl_created";i:1569429983;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/portfolio/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:34:"["creative portfolio","portfolio"]";s:10:"menu_order";i:246;s:16:"popularity_index";i:482;s:11:"trend_index";i:609;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:743;a:15:{s:2:"id";i:11890;s:5:"title";s:9:"Portfolio";s:9:"thumbnail";s:84:"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png";s:12:"tmpl_created";i:1571907344;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:43:"["creative portfolio","Header","portfolio"]";s:10:"menu_order";i:247;s:16:"popularity_index";i:306;s:11:"trend_index";i:364;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:744;a:15:{s:2:"id";i:11861;s:5:"title";s:27:"Portfolio &#8211; Project 1";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png";s:12:"tmpl_created";i:1569429975;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:34:"["creative portfolio","portfolio"]";s:10:"menu_order";i:248;s:16:"popularity_index";i:643;s:11:"trend_index";i:764;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:745;a:15:{s:2:"id";i:11870;s:5:"title";s:27:"Portfolio &#8211; Project 2";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png";s:12:"tmpl_created";i:1569429964;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:34:"["creative portfolio","portfolio"]";s:10:"menu_order";i:249;s:16:"popularity_index";i:662;s:11:"trend_index";i:816;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:746;a:15:{s:2:"id";i:11897;s:5:"title";s:27:"Portfolio &#8211; Project 2";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png";s:12:"tmpl_created";i:1569494236;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:34:"["creative portfolio","portfolio"]";s:10:"menu_order";i:250;s:16:"popularity_index";i:733;s:11:"trend_index";i:744;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:747;a:15:{s:2:"id";i:11877;s:5:"title";s:27:"Portfolio &#8211; Project 3";s:9:"thumbnail";s:75:"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png";s:12:"tmpl_created";i:1569429954;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:34:"["creative portfolio","portfolio"]";s:10:"menu_order";i:251;s:16:"popularity_index";i:692;s:11:"trend_index";i:0;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:748;a:15:{s:2:"id";i:5019;s:5:"title";s:11:"Portfolio 1";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png";s:12:"tmpl_created";i:1520520580;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/portfolio-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:252;s:16:"popularity_index";i:170;s:11:"trend_index";i:236;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:749;a:15:{s:2:"id";i:5141;s:5:"title";s:12:"Portfolio 10";s:9:"thumbnail";s:79:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png";s:12:"tmpl_created";i:1520520601;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/blocks/portfolio-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:253;s:16:"popularity_index";i:416;s:11:"trend_index";i:478;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:750;a:15:{s:2:"id";i:5027;s:5:"title";s:12:"Portfolio 11";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png";s:12:"tmpl_created";i:1520520581;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/blocks/portfolio-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:254;s:16:"popularity_index";i:304;s:11:"trend_index";i:421;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:751;a:15:{s:2:"id";i:5037;s:5:"title";s:12:"Portfolio 12";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png";s:12:"tmpl_created";i:1520520583;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/blocks/portfolio-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:255;s:16:"popularity_index";i:279;s:11:"trend_index";i:399;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:752;a:15:{s:2:"id";i:5057;s:5:"title";s:12:"Portfolio 13";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png";s:12:"tmpl_created";i:1520520586;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/blocks/portfolio-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:256;s:16:"popularity_index";i:239;s:11:"trend_index";i:288;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:753;a:15:{s:2:"id";i:5071;s:5:"title";s:12:"Portfolio 14";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png";s:12:"tmpl_created";i:1520520588;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/blocks/portfolio-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:257;s:16:"popularity_index";i:276;s:11:"trend_index";i:329;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:754;a:15:{s:2:"id";i:5090;s:5:"title";s:12:"Portfolio 15";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png";s:12:"tmpl_created";i:1520520591;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/blocks/portfolio-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:258;s:16:"popularity_index";i:186;s:11:"trend_index";i:283;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:755;a:15:{s:2:"id";i:5098;s:5:"title";s:12:"Portfolio 16";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png";s:12:"tmpl_created";i:1520520593;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/blocks/portfolio-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:259;s:16:"popularity_index";i:156;s:11:"trend_index";i:211;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:756;a:15:{s:2:"id";i:5115;s:5:"title";s:12:"Portfolio 17";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png";s:12:"tmpl_created";i:1520520596;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/blocks/portfolio-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:260;s:16:"popularity_index";i:19;s:11:"trend_index";i:22;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:757;a:15:{s:2:"id";i:5133;s:5:"title";s:12:"Portfolio 18";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png";s:12:"tmpl_created";i:1520520599;s:6:"author";s:9:"Elementor";s:3:"url";s:109:"https://library.elementor.com/blocks/portfolio-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:261;s:16:"popularity_index";i:180;s:11:"trend_index";i:280;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:758;a:15:{s:2:"id";i:5149;s:5:"title";s:11:"Portfolio 2";s:9:"thumbnail";s:79:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png";s:12:"tmpl_created";i:1520520602;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/portfolio-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:262;s:16:"popularity_index";i:413;s:11:"trend_index";i:635;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:759;a:15:{s:2:"id";i:5045;s:5:"title";s:11:"Portfolio 3";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png";s:12:"tmpl_created";i:1520443423;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/portfolio-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:263;s:16:"popularity_index";i:636;s:11:"trend_index";i:608;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:760;a:15:{s:2:"id";i:5082;s:5:"title";s:11:"Portfolio 4";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png";s:12:"tmpl_created";i:1520520589;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/portfolio-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:264;s:16:"popularity_index";i:558;s:11:"trend_index";i:654;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:761;a:15:{s:2:"id";i:5107;s:5:"title";s:11:"Portfolio 5";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png";s:12:"tmpl_created";i:1520520594;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/portfolio-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:265;s:16:"popularity_index";i:380;s:11:"trend_index";i:347;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:762;a:15:{s:2:"id";i:5125;s:5:"title";s:11:"Portfolio 6";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png";s:12:"tmpl_created";i:1520520597;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/portfolio-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:266;s:16:"popularity_index";i:236;s:11:"trend_index";i:386;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:763;a:15:{s:2:"id";i:5007;s:5:"title";s:11:"Portfolio 7";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png";s:12:"tmpl_created";i:1520520578;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/portfolio-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"portfolio";s:4:"tags";s:13:"["portfolio"]";s:10:"menu_order";i:267;s:16:"popularity_index";i:44;s:11:"trend_index";i:183;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:764;a:15:{s:2:"id";i:4509;s:5:"title";s:9:"Pricing 1";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png";s:12:"tmpl_created";i:1520443310;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/pricing-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"pricing";s:4:"tags";s:11:"["pricing"]";s:10:"menu_order";i:268;s:16:"popularity_index";i:703;s:11:"trend_index";i:641;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:765;a:15:{s:2:"id";i:4553;s:5:"title";s:10:"Pricing 10";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png";s:12:"tmpl_created";i:1520443319;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/pricing-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"pricing";s:4:"tags";s:11:"["pricing"]";s:10:"menu_order";i:269;s:16:"popularity_index";i:511;s:11:"trend_index";i:506;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:766;a:15:{s:2:"id";i:4572;s:5:"title";s:10:"Pricing 11";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png";s:12:"tmpl_created";i:1520443324;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/pricing-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"pricing";s:4:"tags";s:11:"["pricing"]";s:10:"menu_order";i:270;s:16:"popularity_index";i:308;s:11:"trend_index";i:248;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:767;a:15:{s:2:"id";i:4580;s:5:"title";s:10:"Pricing 12";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png";s:12:"tmpl_created";i:1520443326;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/pricing-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"pricing";s:4:"tags";s:11:"["pricing"]";s:10:"menu_order";i:271;s:16:"popularity_index";i:576;s:11:"trend_index";i:526;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:768;a:15:{s:2:"id";i:4597;s:5:"title";s:10:"Pricing 13";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png";s:12:"tmpl_created";i:1520443330;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/pricing-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"pricing";s:4:"tags";s:11:"["pricing"]";s:10:"menu_order";i:272;s:16:"popularity_index";i:613;s:11:"trend_index";i:450;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:769;a:15:{s:2:"id";i:4613;s:5:"title";s:10:"Pricing 14";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png";s:12:"tmpl_created";i:1520443334;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/pricing-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"pricing";s:4:"tags";s:11:"["pricing"]";s:10:"menu_order";i:273;s:16:"popularity_index";i:581;s:11:"trend_index";i:568;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:770;a:15:{s:2:"id";i:4529;s:5:"title";s:9:"Pricing 2";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png";s:12:"tmpl_created";i:1520443314;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/pricing-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"pricing";s:4:"tags";s:11:"["pricing"]";s:10:"menu_order";i:274;s:16:"popularity_index";i:609;s:11:"trend_index";i:613;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:771;a:15:{s:2:"id";i:4545;s:5:"title";s:9:"Pricing 3";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png";s:12:"tmpl_created";i:1520443317;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/pricing-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"pricing";s:4:"tags";s:11:"["pricing"]";s:10:"menu_order";i:275;s:16:"popularity_index";i:707;s:11:"trend_index";i:825;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:772;a:15:{s:2:"id";i:4562;s:5:"title";s:9:"Pricing 4";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png";s:12:"tmpl_created";i:1520443322;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/pricing-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"pricing";s:4:"tags";s:11:"["pricing"]";s:10:"menu_order";i:276;s:16:"popularity_index";i:697;s:11:"trend_index";i:821;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:773;a:15:{s:2:"id";i:4589;s:5:"title";s:9:"Pricing 5";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png";s:12:"tmpl_created";i:1520443327;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/pricing-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"pricing";s:4:"tags";s:11:"["pricing"]";s:10:"menu_order";i:277;s:16:"popularity_index";i:716;s:11:"trend_index";i:639;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:774;a:15:{s:2:"id";i:4605;s:5:"title";s:9:"Pricing 6";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png";s:12:"tmpl_created";i:1520443332;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/pricing-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"pricing";s:4:"tags";s:11:"["pricing"]";s:10:"menu_order";i:278;s:16:"popularity_index";i:738;s:11:"trend_index";i:773;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:775;a:15:{s:2:"id";i:4500;s:5:"title";s:9:"Pricing 7";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png";s:12:"tmpl_created";i:1520443308;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/pricing-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"pricing";s:4:"tags";s:11:"["pricing"]";s:10:"menu_order";i:279;s:16:"popularity_index";i:500;s:11:"trend_index";i:451;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:776;a:15:{s:2:"id";i:4521;s:5:"title";s:9:"Pricing 8";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png";s:12:"tmpl_created";i:1520443312;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/pricing-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"pricing";s:4:"tags";s:11:"["pricing"]";s:10:"menu_order";i:280;s:16:"popularity_index";i:311;s:11:"trend_index";i:372;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:777;a:15:{s:2:"id";i:4537;s:5:"title";s:9:"Pricing 9";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png";s:12:"tmpl_created";i:1520443315;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/pricing-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"pricing";s:4:"tags";s:11:"["pricing"]";s:10:"menu_order";i:281;s:16:"popularity_index";i:589;s:11:"trend_index";i:841;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:778;a:15:{s:2:"id";i:9239;s:5:"title";s:17:"product archive 1";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png";s:12:"tmpl_created";i:1532953482;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/blocks/product-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:15:"product archive";s:4:"tags";s:2:"[]";s:10:"menu_order";i:282;s:16:"popularity_index";i:60;s:11:"trend_index";i:25;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:779;a:15:{s:2:"id";i:9247;s:5:"title";s:17:"product archive 2";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png";s:12:"tmpl_created";i:1532953793;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/blocks/product-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:15:"product archive";s:4:"tags";s:2:"[]";s:10:"menu_order";i:283;s:16:"popularity_index";i:71;s:11:"trend_index";i:30;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:780;a:15:{s:2:"id";i:9254;s:5:"title";s:17:"product archive 3";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png";s:12:"tmpl_created";i:1532954032;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/blocks/product-archive-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:15:"product archive";s:4:"tags";s:2:"[]";s:10:"menu_order";i:284;s:16:"popularity_index";i:73;s:11:"trend_index";i:44;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:781;a:15:{s:2:"id";i:15204;s:5:"title";s:24:"Psychologist &#8211; 404";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg";s:12:"tmpl_created";i:1600161419;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/blocks/psychologist-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:40:"["404","Psychologist","Psychotherapist"]";s:10:"menu_order";i:285;s:16:"popularity_index";i:574;s:11:"trend_index";i:493;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:782;a:15:{s:2:"id";i:15212;s:5:"title";s:28:"Psychologist &#8211; Archive";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg";s:12:"tmpl_created";i:1600162340;s:6:"author";s:9:"Elementor";s:3:"url";s:117:"https://library.elementor.com/blocks/psychologist-archive/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:34:"["Psychologist","Psychotherapist"]";s:10:"menu_order";i:286;s:16:"popularity_index";i:379;s:11:"trend_index";i:358;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:783;a:15:{s:2:"id";i:15219;s:5:"title";s:27:"Psychologist &#8211; Footer";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg";s:12:"tmpl_created";i:1600163069;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/blocks/psychologist-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:43:"["Footer","Psychologist","Psychotherapist"]";s:10:"menu_order";i:287;s:16:"popularity_index";i:599;s:11:"trend_index";i:500;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:784;a:15:{s:2:"id";i:15230;s:5:"title";s:27:"Psychologist &#8211; Header";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/09/Header.png";s:12:"tmpl_created";i:1600163444;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/blocks/psychologist-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:43:"["Header","Psychologist","Psychotherapist"]";s:10:"menu_order";i:288;s:16:"popularity_index";i:429;s:11:"trend_index";i:423;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:785;a:15:{s:2:"id";i:15240;s:5:"title";s:34:"Psychologist &#8211; single post 1";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png";s:12:"tmpl_created";i:1600164087;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:34:"["Psychologist","Psychotherapist"]";s:10:"menu_order";i:289;s:16:"popularity_index";i:562;s:11:"trend_index";i:570;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:786;a:15:{s:2:"id";i:15251;s:5:"title";s:34:"Psychologist &#8211; single post 2";s:9:"thumbnail";s:80:"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png";s:12:"tmpl_created";i:1600165179;s:6:"author";s:9:"Elementor";s:3:"url";s:123:"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:34:"["Psychologist","Psychotherapist"]";s:10:"menu_order";i:290;s:16:"popularity_index";i:507;s:11:"trend_index";i:368;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:787;a:15:{s:2:"id";i:4313;s:5:"title";s:11:"Services 13";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png";s:12:"tmpl_created";i:1520443268;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:291;s:16:"popularity_index";i:115;s:11:"trend_index";i:53;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:788;a:15:{s:2:"id";i:4324;s:5:"title";s:11:"Services 14";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png";s:12:"tmpl_created";i:1520443270;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:292;s:16:"popularity_index";i:277;s:11:"trend_index";i:138;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:789;a:15:{s:2:"id";i:4368;s:5:"title";s:11:"Services 16";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png";s:12:"tmpl_created";i:1520443279;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:293;s:16:"popularity_index";i:62;s:11:"trend_index";i:59;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:790;a:15:{s:2:"id";i:4391;s:5:"title";s:11:"Services 17";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png";s:12:"tmpl_created";i:1520443283;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:294;s:16:"popularity_index";i:153;s:11:"trend_index";i:120;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:791;a:15:{s:2:"id";i:4235;s:5:"title";s:11:"Services 18";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png";s:12:"tmpl_created";i:1520443251;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:295;s:16:"popularity_index";i:273;s:11:"trend_index";i:172;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:792;a:15:{s:2:"id";i:4357;s:5:"title";s:11:"Services 20";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png";s:12:"tmpl_created";i:1520443277;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:296;s:16:"popularity_index";i:45;s:11:"trend_index";i:45;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:793;a:15:{s:2:"id";i:4341;s:5:"title";s:11:"Services 21";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png";s:12:"tmpl_created";i:1520443274;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:297;s:16:"popularity_index";i:142;s:11:"trend_index";i:114;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:794;a:15:{s:2:"id";i:4332;s:5:"title";s:11:"Services 22";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png";s:12:"tmpl_created";i:1520443272;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:298;s:16:"popularity_index";i:138;s:11:"trend_index";i:149;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:795;a:15:{s:2:"id";i:4212;s:5:"title";s:11:"Services 23";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png";s:12:"tmpl_created";i:1520443248;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:299;s:16:"popularity_index";i:136;s:11:"trend_index";i:302;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:796;a:15:{s:2:"id";i:4276;s:5:"title";s:11:"Services 24";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png";s:12:"tmpl_created";i:1520443261;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:300;s:16:"popularity_index";i:353;s:11:"trend_index";i:514;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:797;a:15:{s:2:"id";i:4260;s:5:"title";s:11:"Services 25";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png";s:12:"tmpl_created";i:1520443257;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-25/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:301;s:16:"popularity_index";i:184;s:11:"trend_index";i:209;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:798;a:15:{s:2:"id";i:4244;s:5:"title";s:11:"Services 26";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png";s:12:"tmpl_created";i:1520443253;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:302;s:16:"popularity_index";i:544;s:11:"trend_index";i:596;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:799;a:15:{s:2:"id";i:4400;s:5:"title";s:11:"Services 27";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png";s:12:"tmpl_created";i:1520443285;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:303;s:16:"popularity_index";i:286;s:11:"trend_index";i:438;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:800;a:15:{s:2:"id";i:4376;s:5:"title";s:11:"Services 28";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png";s:12:"tmpl_created";i:1520443281;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-28/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:304;s:16:"popularity_index";i:151;s:11:"trend_index";i:249;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:801;a:15:{s:2:"id";i:4349;s:5:"title";s:11:"Services 29";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png";s:12:"tmpl_created";i:1520443275;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:305;s:16:"popularity_index";i:330;s:11:"trend_index";i:483;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:802;a:15:{s:2:"id";i:4227;s:5:"title";s:11:"Services 30";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png";s:12:"tmpl_created";i:1520443250;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-30/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:306;s:16:"popularity_index";i:351;s:11:"trend_index";i:553;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:803;a:15:{s:2:"id";i:6162;s:5:"title";s:11:"Services 31";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png";s:12:"tmpl_created";i:1520443668;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/services-31/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"stats";s:4:"tags";s:9:"["Stats"]";s:10:"menu_order";i:307;s:16:"popularity_index";i:372;s:11:"trend_index";i:550;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:804;a:15:{s:2:"id";i:4302;s:5:"title";s:10:"Services 5";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png";s:12:"tmpl_created";i:1520443266;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/services-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:308;s:16:"popularity_index";i:58;s:11:"trend_index";i:97;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:805;a:15:{s:2:"id";i:4293;s:5:"title";s:10:"Services 6";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png";s:12:"tmpl_created";i:1520443265;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/services-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:309;s:16:"popularity_index";i:288;s:11:"trend_index";i:269;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:806;a:15:{s:2:"id";i:4284;s:5:"title";s:10:"Services 7";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png";s:12:"tmpl_created";i:1520443263;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/services-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:310;s:16:"popularity_index";i:27;s:11:"trend_index";i:21;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:807;a:15:{s:2:"id";i:4268;s:5:"title";s:10:"Services 8";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png";s:12:"tmpl_created";i:1520443259;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/services-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:311;s:16:"popularity_index";i:173;s:11:"trend_index";i:213;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:808;a:15:{s:2:"id";i:4252;s:5:"title";s:10:"Services 9";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png";s:12:"tmpl_created";i:1520443255;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/services-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"services";s:4:"tags";s:12:"["Services"]";s:10:"menu_order";i:312;s:16:"popularity_index";i:46;s:11:"trend_index";i:99;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:809;a:15:{s:2:"id";i:8676;s:5:"title";s:13:"single page 1";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg";s:12:"tmpl_created";i:1527682423;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/single-page-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:313;s:16:"popularity_index";i:285;s:11:"trend_index";i:145;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:810;a:15:{s:2:"id";i:8678;s:5:"title";s:13:"single page 2";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg";s:12:"tmpl_created";i:1527682780;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/single-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:314;s:16:"popularity_index";i:140;s:11:"trend_index";i:82;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:811;a:15:{s:2:"id";i:8679;s:5:"title";s:13:"single page 3";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg";s:12:"tmpl_created";i:1527682847;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/single-page-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:315;s:16:"popularity_index";i:122;s:11:"trend_index";i:23;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:812;a:15:{s:2:"id";i:8680;s:5:"title";s:13:"single page 4";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg";s:12:"tmpl_created";i:1527682896;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/single-page-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:316;s:16:"popularity_index";i:373;s:11:"trend_index";i:190;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:813;a:15:{s:2:"id";i:8681;s:5:"title";s:13:"single page 5";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg";s:12:"tmpl_created";i:1527682969;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/single-page-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:317;s:16:"popularity_index";i:287;s:11:"trend_index";i:218;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:814;a:15:{s:2:"id";i:8682;s:5:"title";s:13:"single page 6";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg";s:12:"tmpl_created";i:1527683026;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/single-page-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:318;s:16:"popularity_index";i:412;s:11:"trend_index";i:227;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:815;a:15:{s:2:"id";i:8703;s:5:"title";s:13:"single page 7";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg";s:12:"tmpl_created";i:1527683072;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/single-page-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single page";s:4:"tags";s:2:"[]";s:10:"menu_order";i:319;s:16:"popularity_index";i:401;s:11:"trend_index";i:316;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:816;a:15:{s:2:"id";i:7650;s:5:"title";s:13:"Single Post 1";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg";s:12:"tmpl_created";i:1521557736;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:24:"["Blog","Post","Single"]";s:10:"menu_order";i:320;s:16:"popularity_index";i:119;s:11:"trend_index";i:266;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:817;a:15:{s:2:"id";i:7663;s:5:"title";s:13:"Single Post 2";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg";s:12:"tmpl_created";i:1521547761;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:24:"["Blog","Post","Single"]";s:10:"menu_order";i:321;s:16:"popularity_index";i:50;s:11:"trend_index";i:139;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:818;a:15:{s:2:"id";i:9296;s:5:"title";s:13:"Single Post 3";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg";s:12:"tmpl_created";i:1537440673;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/single-post-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:2:"[]";s:10:"menu_order";i:322;s:16:"popularity_index";i:213;s:11:"trend_index";i:204;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:819;a:15:{s:2:"id";i:9301;s:5:"title";s:13:"Single Post 4";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg";s:12:"tmpl_created";i:1537440661;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/single-post-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:2:"[]";s:10:"menu_order";i:323;s:16:"popularity_index";i:248;s:11:"trend_index";i:336;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:820;a:15:{s:2:"id";i:9313;s:5:"title";s:13:"Single Post 5";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg";s:12:"tmpl_created";i:1537440798;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/single-post-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:2:"[]";s:10:"menu_order";i:324;s:16:"popularity_index";i:197;s:11:"trend_index";i:177;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:821;a:15:{s:2:"id";i:9343;s:5:"title";s:13:"Single Post 6";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg";s:12:"tmpl_created";i:1537443531;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/single-post-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:2:"[]";s:10:"menu_order";i:325;s:16:"popularity_index";i:228;s:11:"trend_index";i:279;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:822;a:15:{s:2:"id";i:9349;s:5:"title";s:13:"Single Post 7";s:9:"thumbnail";s:65:"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg";s:12:"tmpl_created";i:1537443903;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/single-post-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:2:"[]";s:10:"menu_order";i:326;s:16:"popularity_index";i:158;s:11:"trend_index";i:253;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:823;a:15:{s:2:"id";i:9174;s:5:"title";s:17:"single product 01";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png";s:12:"tmpl_created";i:1532950125;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/blocks/single-product-01/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"single product";s:4:"tags";s:2:"[]";s:10:"menu_order";i:327;s:16:"popularity_index";i:31;s:11:"trend_index";i:6;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:824;a:15:{s:2:"id";i:9178;s:5:"title";s:17:"single product 02";s:9:"thumbnail";s:84:"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png";s:12:"tmpl_created";i:1532951997;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/blocks/single-product-02/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"single product";s:4:"tags";s:2:"[]";s:10:"menu_order";i:328;s:16:"popularity_index";i:66;s:11:"trend_index";i:42;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:825;a:15:{s:2:"id";i:9180;s:5:"title";s:17:"single product 03";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png";s:12:"tmpl_created";i:1532952302;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/blocks/single-product-03/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"single product";s:4:"tags";s:2:"[]";s:10:"menu_order";i:329;s:16:"popularity_index";i:108;s:11:"trend_index";i:66;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:826;a:15:{s:2:"id";i:9182;s:5:"title";s:17:"single product 04";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png";s:12:"tmpl_created";i:1532952606;s:6:"author";s:9:"Elementor";s:3:"url";s:114:"https://library.elementor.com/blocks/single-product-04/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:14:"single product";s:4:"tags";s:2:"[]";s:10:"menu_order";i:330;s:16:"popularity_index";i:123;s:11:"trend_index";i:81;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:827;a:15:{s:2:"id";i:6114;s:5:"title";s:7:"Stats 1";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png";s:12:"tmpl_created";i:1520443659;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/stats-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"stats";s:4:"tags";s:11:"["numbers"]";s:10:"menu_order";i:331;s:16:"popularity_index";i:434;s:11:"trend_index";i:692;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:828;a:15:{s:2:"id";i:6178;s:5:"title";s:8:"Stats 10";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png";s:12:"tmpl_created";i:1520443676;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/stats-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"stats";s:4:"tags";s:9:"["Stats"]";s:10:"menu_order";i:332;s:16:"popularity_index";i:435;s:11:"trend_index";i:755;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:829;a:15:{s:2:"id";i:6170;s:5:"title";s:8:"Stats 11";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png";s:12:"tmpl_created";i:1520443670;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/stats-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"stats";s:4:"tags";s:9:"["Stats"]";s:10:"menu_order";i:333;s:16:"popularity_index";i:366;s:11:"trend_index";i:552;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:830;a:15:{s:2:"id";i:6186;s:5:"title";s:8:"Stats 12";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png";s:12:"tmpl_created";i:1520443678;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/stats-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"stats";s:4:"tags";s:9:"["Stats"]";s:10:"menu_order";i:334;s:16:"popularity_index";i:569;s:11:"trend_index";i:811;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:831;a:15:{s:2:"id";i:6071;s:5:"title";s:8:"Stats 13";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png";s:12:"tmpl_created";i:1520443649;s:6:"author";s:9:"Elementor";s:3:"url";s:105:"https://library.elementor.com/blocks/stats-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"stats";s:4:"tags";s:11:"["numbers"]";s:10:"menu_order";i:335;s:16:"popularity_index";i:168;s:11:"trend_index";i:328;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:832;a:15:{s:2:"id";i:6106;s:5:"title";s:7:"Stats 2";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png";s:12:"tmpl_created";i:1520443657;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/stats-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"stats";s:4:"tags";s:11:"["numbers"]";s:10:"menu_order";i:336;s:16:"popularity_index";i:361;s:11:"trend_index";i:784;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:833;a:15:{s:2:"id";i:6079;s:5:"title";s:7:"Stats 3";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png";s:12:"tmpl_created";i:1520443651;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/stats-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"stats";s:4:"tags";s:11:"["numbers"]";s:10:"menu_order";i:337;s:16:"popularity_index";i:284;s:11:"trend_index";i:385;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:834;a:15:{s:2:"id";i:6089;s:5:"title";s:7:"Stats 4";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png";s:12:"tmpl_created";i:1520443653;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/stats-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"stats";s:4:"tags";s:9:"["Stats"]";s:10:"menu_order";i:338;s:16:"popularity_index";i:205;s:11:"trend_index";i:452;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:835;a:15:{s:2:"id";i:6063;s:5:"title";s:7:"Stats 5";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png";s:12:"tmpl_created";i:1520443647;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/stats-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"stats";s:4:"tags";s:11:"["numbers"]";s:10:"menu_order";i:339;s:16:"popularity_index";i:181;s:11:"trend_index";i:419;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:836;a:15:{s:2:"id";i:6097;s:5:"title";s:7:"Stats 6";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png";s:12:"tmpl_created";i:1520443655;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/stats-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"stats";s:4:"tags";s:11:"["numbers"]";s:10:"menu_order";i:340;s:16:"popularity_index";i:264;s:11:"trend_index";i:492;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:837;a:15:{s:2:"id";i:5956;s:5:"title";s:7:"Stats 7";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png";s:12:"tmpl_created";i:1520443623;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/stats-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"stats";s:4:"tags";s:9:"["Stats"]";s:10:"menu_order";i:341;s:16:"popularity_index";i:532;s:11:"trend_index";i:541;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:838;a:15:{s:2:"id";i:5947;s:5:"title";s:7:"Stats 8";s:9:"thumbnail";s:76:"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png";s:12:"tmpl_created";i:1520443621;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/stats-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"stats";s:4:"tags";s:9:"["Stats"]";s:10:"menu_order";i:342;s:16:"popularity_index";i:368;s:11:"trend_index";i:531;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:839;a:15:{s:2:"id";i:6152;s:5:"title";s:7:"Stats 9";s:9:"thumbnail";s:77:"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png";s:12:"tmpl_created";i:1520443666;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/stats-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:5:"stats";s:4:"tags";s:9:"["Stats"]";s:10:"menu_order";i:343;s:16:"popularity_index";i:272;s:11:"trend_index";i:557;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:840;a:15:{s:2:"id";i:5157;s:5:"title";s:11:"Subscribe 1";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png";s:12:"tmpl_created";i:1520443448;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/subscribe-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"subscribe";s:4:"tags";s:20:"["form","subscribe"]";s:10:"menu_order";i:344;s:16:"popularity_index";i:340;s:11:"trend_index";i:293;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:841;a:15:{s:2:"id";i:5181;s:5:"title";s:11:"Subscribe 2";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png";s:12:"tmpl_created";i:1520443454;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"subscribe";s:4:"tags";s:20:"["form","subscribe"]";s:10:"menu_order";i:345;s:16:"popularity_index";i:451;s:11:"trend_index";i:340;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:842;a:15:{s:2:"id";i:5165;s:5:"title";s:11:"Subscribe 3";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png";s:12:"tmpl_created";i:1520443450;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/subscribe-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"subscribe";s:4:"tags";s:20:"["form","subscribe"]";s:10:"menu_order";i:346;s:16:"popularity_index";i:520;s:11:"trend_index";i:620;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:843;a:15:{s:2:"id";i:5222;s:5:"title";s:11:"Subscribe 4";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png";s:12:"tmpl_created";i:1520443464;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/subscribe-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"subscribe";s:4:"tags";s:20:"["form","subscribe"]";s:10:"menu_order";i:347;s:16:"popularity_index";i:397;s:11:"trend_index";i:427;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:844;a:15:{s:2:"id";i:5173;s:5:"title";s:11:"Subscribe 5";s:9:"thumbnail";s:78:"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png";s:12:"tmpl_created";i:1520443452;s:6:"author";s:9:"Elementor";s:3:"url";s:108:"https://library.elementor.com/blocks/subscribe-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:9:"subscribe";s:4:"tags";s:20:"["form","subscribe"]";s:10:"menu_order";i:348;s:16:"popularity_index";i:261;s:11:"trend_index";i:237;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:845;a:15:{s:2:"id";i:4801;s:5:"title";s:7:"Team 11";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png";s:12:"tmpl_created";i:1520443369;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/team-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:349;s:16:"popularity_index";i:332;s:11:"trend_index";i:188;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:846;a:15:{s:2:"id";i:4770;s:5:"title";s:7:"Team 12";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png";s:12:"tmpl_created";i:1520443364;s:6:"author";s:9:"Elementor";s:3:"url";s:106:"https://library.elementor.com/blocks/team-12-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:350;s:16:"popularity_index";i:432;s:11:"trend_index";i:488;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:847;a:15:{s:2:"id";i:4727;s:5:"title";s:7:"Team 13";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png";s:12:"tmpl_created";i:1520443356;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/team-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:351;s:16:"popularity_index";i:375;s:11:"trend_index";i:345;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:848;a:15:{s:2:"id";i:5999;s:5:"title";s:7:"Team 14";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png";s:12:"tmpl_created";i:1520443634;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/team-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:352;s:16:"popularity_index";i:110;s:11:"trend_index";i:318;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:849;a:15:{s:2:"id";i:4698;s:5:"title";s:7:"Team 15";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png";s:12:"tmpl_created";i:1520443350;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/team-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:353;s:16:"popularity_index";i:449;s:11:"trend_index";i:410;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:850;a:15:{s:2:"id";i:4781;s:5:"title";s:7:"Team 16";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png";s:12:"tmpl_created";i:1520443365;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/team-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:354;s:16:"popularity_index";i:267;s:11:"trend_index";i:330;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:851;a:15:{s:2:"id";i:6144;s:5:"title";s:7:"Team 17";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png";s:12:"tmpl_created";i:1520443664;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/team-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:355;s:16:"popularity_index";i:166;s:11:"trend_index";i:365;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:852;a:15:{s:2:"id";i:4793;s:5:"title";s:7:"Team 18";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png";s:12:"tmpl_created";i:1520443367;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/team-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:356;s:16:"popularity_index";i:207;s:11:"trend_index";i:173;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:853;a:15:{s:2:"id";i:4809;s:5:"title";s:7:"Team 19";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png";s:12:"tmpl_created";i:1520443371;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/team-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:357;s:16:"popularity_index";i:300;s:11:"trend_index";i:465;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:854;a:15:{s:2:"id";i:4736;s:5:"title";s:7:"Team 20";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png";s:12:"tmpl_created";i:1520443358;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/team-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:358;s:16:"popularity_index";i:144;s:11:"trend_index";i:159;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:855;a:15:{s:2:"id";i:4818;s:5:"title";s:7:"Team 21";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png";s:12:"tmpl_created";i:1520443373;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/team-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:359;s:16:"popularity_index";i:515;s:11:"trend_index";i:606;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:856;a:15:{s:2:"id";i:4759;s:5:"title";s:7:"Team 22";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png";s:12:"tmpl_created";i:1520443362;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/team-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:360;s:16:"popularity_index";i:299;s:11:"trend_index";i:376;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:857;a:15:{s:2:"id";i:4746;s:5:"title";s:7:"Team 23";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png";s:12:"tmpl_created";i:1520443360;s:6:"author";s:9:"Elementor";s:3:"url";s:104:"https://library.elementor.com/blocks/team-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:361;s:16:"popularity_index";i:282;s:11:"trend_index";i:378;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:858;a:15:{s:2:"id";i:4718;s:5:"title";s:6:"Team 4";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png";s:12:"tmpl_created";i:1520443354;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/team-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:362;s:16:"popularity_index";i:192;s:11:"trend_index";i:359;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:859;a:15:{s:2:"id";i:4706;s:5:"title";s:6:"Team 5";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png";s:12:"tmpl_created";i:1520443352;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/team-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:363;s:16:"popularity_index";i:149;s:11:"trend_index";i:299;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:860;a:15:{s:2:"id";i:6008;s:5:"title";s:6:"Team 6";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png";s:12:"tmpl_created";i:1520443636;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/team-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:364;s:16:"popularity_index";i:75;s:11:"trend_index";i:277;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:861;a:15:{s:2:"id";i:4690;s:5:"title";s:6:"Team 7";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png";s:12:"tmpl_created";i:1520443348;s:6:"author";s:9:"Elementor";s:3:"url";s:103:"https://library.elementor.com/blocks/team-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:4:"team";s:4:"tags";s:8:"["team"]";s:10:"menu_order";i:365;s:16:"popularity_index";i:243;s:11:"trend_index";i:402;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:862;a:15:{s:2:"id";i:4921;s:5:"title";s:14:"Testimonial 10";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png";s:12:"tmpl_created";i:1520520562;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:366;s:16:"popularity_index";i:219;s:11:"trend_index";i:198;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:863;a:15:{s:2:"id";i:4889;s:5:"title";s:14:"Testimonial 11";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg";s:12:"tmpl_created";i:1520520556;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-11/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:367;s:16:"popularity_index";i:557;s:11:"trend_index";i:522;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:864;a:15:{s:2:"id";i:4871;s:5:"title";s:14:"Testimonial 12";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png";s:12:"tmpl_created";i:1520520552;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-12/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:368;s:16:"popularity_index";i:262;s:11:"trend_index";i:391;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:865;a:15:{s:2:"id";i:4854;s:5:"title";s:14:"Testimonial 13";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png";s:12:"tmpl_created";i:1520520549;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-13/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:369;s:16:"popularity_index";i:637;s:11:"trend_index";i:741;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:866;a:15:{s:2:"id";i:4995;s:5:"title";s:14:"Testimonial 14";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png";s:12:"tmpl_created";i:1520520577;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-14/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:370;s:16:"popularity_index";i:400;s:11:"trend_index";i:411;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:867;a:15:{s:2:"id";i:4979;s:5:"title";s:14:"Testimonial 15";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png";s:12:"tmpl_created";i:1520520573;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-15/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:371;s:16:"popularity_index";i:568;s:11:"trend_index";i:544;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:868;a:15:{s:2:"id";i:4835;s:5:"title";s:14:"Testimonial 16";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png";s:12:"tmpl_created";i:1520520546;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-16/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:372;s:16:"popularity_index";i:399;s:11:"trend_index";i:401;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:869;a:15:{s:2:"id";i:4987;s:5:"title";s:14:"Testimonial 17";s:9:"thumbnail";s:84:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png";s:12:"tmpl_created";i:1520520575;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-17/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:373;s:16:"popularity_index";i:159;s:11:"trend_index";i:199;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:870;a:15:{s:2:"id";i:4843;s:5:"title";s:14:"Testimonial 18";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png";s:12:"tmpl_created";i:1520520548;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-18/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:374;s:16:"popularity_index";i:457;s:11:"trend_index";i:780;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:871;a:15:{s:2:"id";i:4863;s:5:"title";s:14:"Testimonial 19";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png";s:12:"tmpl_created";i:1520520551;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-19/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:375;s:16:"popularity_index";i:245;s:11:"trend_index";i:599;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:872;a:15:{s:2:"id";i:4880;s:5:"title";s:14:"Testimonial 20";s:9:"thumbnail";s:72:"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg";s:12:"tmpl_created";i:1520520554;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-20/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:376;s:16:"popularity_index";i:446;s:11:"trend_index";i:653;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:873;a:15:{s:2:"id";i:4897;s:5:"title";s:14:"Testimonial 21";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png";s:12:"tmpl_created";i:1520520557;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-21/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:377;s:16:"popularity_index";i:78;s:11:"trend_index";i:289;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:874;a:15:{s:2:"id";i:4905;s:5:"title";s:14:"Testimonial 22";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png";s:12:"tmpl_created";i:1520520559;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-22/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:378;s:16:"popularity_index";i:121;s:11:"trend_index";i:221;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:875;a:15:{s:2:"id";i:4913;s:5:"title";s:14:"Testimonial 23";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png";s:12:"tmpl_created";i:1520520561;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-23/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:379;s:16:"popularity_index";i:247;s:11:"trend_index";i:566;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:876;a:15:{s:2:"id";i:4826;s:5:"title";s:14:"Testimonial 24";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png";s:12:"tmpl_created";i:1520520544;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:380;s:16:"popularity_index";i:256;s:11:"trend_index";i:395;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:877;a:15:{s:2:"id";i:4929;s:5:"title";s:14:"Testimonial 24";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png";s:12:"tmpl_created";i:1520520564;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-24/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:381;s:16:"popularity_index";i:49;s:11:"trend_index";i:206;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:878;a:15:{s:2:"id";i:4963;s:5:"title";s:14:"Testimonial 25";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png";s:12:"tmpl_created";i:1520520570;s:6:"author";s:9:"Elementor";s:3:"url";s:113:"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:382;s:16:"popularity_index";i:417;s:11:"trend_index";i:546;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:879;a:15:{s:2:"id";i:4971;s:5:"title";s:14:"Testimonial 26";s:9:"thumbnail";s:82:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png";s:12:"tmpl_created";i:1520520572;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-26/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:383;s:16:"popularity_index";i:649;s:11:"trend_index";i:718;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:880;a:15:{s:2:"id";i:4947;s:5:"title";s:14:"Testimonial 27";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png";s:12:"tmpl_created";i:1520520567;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-27/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:384;s:16:"popularity_index";i:221;s:11:"trend_index";i:496;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:881;a:15:{s:2:"id";i:4955;s:5:"title";s:14:"Testimonial 29";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png";s:12:"tmpl_created";i:1520520569;s:6:"author";s:9:"Elementor";s:3:"url";s:111:"https://library.elementor.com/blocks/testimonial-29/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:385;s:16:"popularity_index";i:378;s:11:"trend_index";i:695;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:882;a:15:{s:2:"id";i:4939;s:5:"title";s:13:"Testimonial 9";s:9:"thumbnail";s:81:"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png";s:12:"tmpl_created";i:1520520565;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/testimonial-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:12:"testimonials";s:4:"tags";s:15:"["Testimonial"]";s:10:"menu_order";i:386;s:16:"popularity_index";i:103;s:11:"trend_index";i:341;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"0";s:12:"access_level";i:0;}i:883;a:15:{s:2:"id";i:12509;s:5:"title";s:18:"Travel &#8211; 404";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2019/12/404.png";s:12:"tmpl_created";i:1575960378;s:6:"author";s:9:"Elementor";s:3:"url";s:107:"https://library.elementor.com/blocks/travel-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:24:"["404","Tours","Travel"]";s:10:"menu_order";i:387;s:16:"popularity_index";i:747;s:11:"trend_index";i:712;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:884;a:15:{s:2:"id";i:12516;s:5:"title";s:27:"Travel &#8211; Archive Blog";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png";s:12:"tmpl_created";i:1575960387;s:6:"author";s:9:"Elementor";s:3:"url";s:116:"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:18:"["Tours","Travel"]";s:10:"menu_order";i:388;s:16:"popularity_index";i:496;s:11:"trend_index";i:487;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:885;a:15:{s:2:"id";i:12500;s:5:"title";s:21:"Travel &#8211; Header";s:9:"thumbnail";s:84:"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png";s:12:"tmpl_created";i:1575960371;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/travel-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:27:"["Header","Tours","Travel"]";s:10:"menu_order";i:389;s:16:"popularity_index";i:443;s:11:"trend_index";i:434;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:886;a:15:{s:2:"id";i:12524;s:5:"title";s:26:"Travel &#8211; Single Post";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png";s:12:"tmpl_created";i:1575960397;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/blocks/travel-single-post/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:18:"["Tours","Travel"]";s:10:"menu_order";i:390;s:16:"popularity_index";i:591;s:11:"trend_index";i:663;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:887;a:15:{s:2:"id";i:12531;s:5:"title";s:31:"Travel &#8211; Single Post Tour";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png";s:12:"tmpl_created";i:1575960404;s:6:"author";s:9:"Elementor";s:3:"url";s:120:"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:18:"["Tours","Travel"]";s:10:"menu_order";i:391;s:16:"popularity_index";i:630;s:11:"trend_index";i:548;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:888;a:15:{s:2:"id";i:12492;s:5:"title";s:14:"Travel -Footer";s:9:"thumbnail";s:69:"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png";s:12:"tmpl_created";i:1575960358;s:6:"author";s:9:"Elementor";s:3:"url";s:110:"https://library.elementor.com/blocks/travel-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:27:"["Footer","Tours","Travel"]";s:10:"menu_order";i:392;s:16:"popularity_index";i:453;s:11:"trend_index";i:322;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:889;a:15:{s:2:"id";i:15498;s:5:"title";s:23:"Travel Blog &#8211; 404";s:9:"thumbnail";s:64:"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg";s:12:"tmpl_created";i:1606215636;s:6:"author";s:9:"Elementor";s:3:"url";s:112:"https://library.elementor.com/blocks/travel-blog-404/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:8:"404 page";s:4:"tags";s:23:"["404","Blog","Travel"]";s:10:"menu_order";i:393;s:16:"popularity_index";i:749;s:11:"trend_index";i:759;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:890;a:15:{s:2:"id";i:15508;s:5:"title";s:29:"Travel Blog &#8211; Archive 1";s:9:"thumbnail";s:74:"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg";s:12:"tmpl_created";i:1606215649;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:17:"["Blog","Travel"]";s:10:"menu_order";i:394;s:16:"popularity_index";i:659;s:11:"trend_index";i:468;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:891;a:15:{s:2:"id";i:15518;s:5:"title";s:29:"Travel Blog &#8211; Archive 2";s:9:"thumbnail";s:79:"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg";s:12:"tmpl_created";i:1606215663;s:6:"author";s:9:"Elementor";s:3:"url";s:118:"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:7:"archive";s:4:"tags";s:17:"["Blog","Travel"]";s:10:"menu_order";i:395;s:16:"popularity_index";i:688;s:11:"trend_index";i:431;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:892;a:15:{s:2:"id";i:15528;s:5:"title";s:26:"Travel Blog &#8211; Footer";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg";s:12:"tmpl_created";i:1606215673;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"footer";s:4:"tags";s:26:"["Blog","Footer","Travel"]";s:10:"menu_order";i:396;s:16:"popularity_index";i:656;s:11:"trend_index";i:377;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:893;a:15:{s:2:"id";i:15536;s:5:"title";s:26:"Travel Blog &#8211; Header";s:9:"thumbnail";s:67:"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg";s:12:"tmpl_created";i:1606215625;s:6:"author";s:9:"Elementor";s:3:"url";s:115:"https://library.elementor.com/blocks/travel-blog-header/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:6:"header";s:4:"tags";s:26:"["Blog","Header","Travel"]";s:10:"menu_order";i:397;s:16:"popularity_index";i:584;s:11:"trend_index";i:228;s:17:"has_page_settings";s:1:"0";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:894;a:15:{s:2:"id";i:15545;s:5:"title";s:33:"Travel Blog &#8211; Single Post 1";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg";s:12:"tmpl_created";i:1606215684;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:17:"["Blog","Travel"]";s:10:"menu_order";i:398;s:16:"popularity_index";i:669;s:11:"trend_index";i:482;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}i:895;a:15:{s:2:"id";i:15556;s:5:"title";s:33:"Travel Blog &#8211; Single Post 2";s:9:"thumbnail";s:73:"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg";s:12:"tmpl_created";i:1606215613;s:6:"author";s:9:"Elementor";s:3:"url";s:122:"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview";s:4:"type";s:5:"block";s:7:"subtype";s:11:"single post";s:4:"tags";s:17:"["Blog","Travel"]";s:10:"menu_order";i:399;s:16:"popularity_index";i:652;s:11:"trend_index";i:454;s:17:"has_page_settings";s:1:"1";s:6:"is_pro";s:1:"1";s:12:"access_level";i:1;}}}', 'no');
INSERT INTO `wpui_options` VALUES
(360, 'elementor_remote_info_feed_data', 'a:5:{i:0;a:5:{s:5:"title";s:50:"8 Black Friday Marketing Strategies & Ideas (2021)";s:7:"excerpt";s:138:"Increase profits from upcoming seasonal sales with these 8 Black Friday marketing tips. Make sure your WordPress website comes out on top!";s:7:"created";i:1634704980;s:5:"badge";s:0:"";s:3:"url";s:122:"https://elementor.com/blog/black-friday-marketing/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed";}i:1;a:5:{s:5:"title";s:40:"HappyAddons Thought Leadership Interview";s:7:"excerpt";s:283:"The Thought Leadership Addons series continues with an interview with Nizam Uddin, CEO and Co-Founder of weDevs, about their plugin for Elementor, HappyAddons. Learn about their background, growth, new releases, and what exciting plans and widgets they have in store for the future. ";s:7:"created";i:1634638252;s:5:"badge";s:0:"";s:3:"url";s:141:"https://elementor.com/blog/happy-addons-thought-leadership-interview/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed";}i:2;a:5:{s:5:"title";s:36:"Elementor Websites of September 2021";s:7:"excerpt";s:200:"The “homepage is where the art is” in this September’s spectacular showcase. Featuring websites across the board from all around the world, this is a collection as refreshing as a spring shower.";s:7:"created";i:1634145544;s:5:"badge";s:0:"";s:3:"url";s:123:"https://elementor.com/blog/showcase-september-2021/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed";}i:3;a:5:{s:5:"title";s:45:"15 Brand-New Elementor Landing Page Templates";s:7:"excerpt";s:143:"Browse through 15 professionally designed landing page templates, available to all Elementor Expert members (Expert, Studio, and Agency plans).";s:7:"created";i:1634048355;s:5:"badge";s:0:"";s:3:"url";s:126:"https://elementor.com/blog/new-landing-page-templates/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed";}i:4;a:5:{s:5:"title";s:89:"8 Examples of High-Converting Mobile Landing Pages (& What Marketers Can Learn From Them)";s:7:"excerpt";s:179:"65% of search traffic and 80%+ Facebook traffic is mobile today. Is your mobile landing page ready to handle this traffic? This guide will show you how to design yours to convert.";s:7:"created";i:1633513719;s:5:"badge";s:0:"";s:3:"url";s:119:"https://elementor.com/blog/mobile-landing-page/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed";}}', 'no'),
(366, 'elementor_pro_license_key', 'activated', 'yes'),
(367, '_elementor_pro_license_data', 'a:2:{s:7:"timeout";i:1636450409;s:5:"value";s:42:"{"license":"valid","expires":"01.01.2030"}";}', 'yes'),
(368, 'elementor_pro_version', '3.3.2', 'yes'),
(369, 'widget_elementor-library', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(370, '_elementor_pro_installed_time', '1635845656', 'yes'),
(371, 'elementor_submissions_db_version', '5', 'yes'),
(375, '_elementor_pro_api_requests_lock', 'a:1:{s:11:"get_version";i:1635891017;}', 'yes'),
(376, 'elementor_pro_remote_info_api_data_3.3.2', 'a:2:{s:7:"timeout";i:1635934217;s:5:"value";s:41018:"{"stable_version":"3.4.2","last_updated":"2021-11-01 17:51:30","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:36759:\\"<h4>3.5.0 - 2021-11-01<\\/h4>\\n<p><strong>This version will roll out gradually over the next few days, and will be available to everyone soon.<\\/strong><\\/p>\\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 simplefy 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\\n<h4>3.4.2 - 2021-10-12<\\/h4><\\/li>\\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: &quot;Save &amp; Close &quot;button 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-16<\\/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=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\">#11475<\\/a>, <a href=\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\">#10690<\\/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-16<\\/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 Pro v3.1<\\/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>\\";}","new_version":"3.4.2","name":"Elementor Pro","slug":"elementor-pro","url":"https:\\/\\/elementor.com\\/pro\\/changelog\\/","homepage":"https:\\/\\/elementor.com\\/pro\\/","requires":"5.0","tested":"5.8.1","elementor_requires":"3.0.1","package":"https:\\/\\/my.elementor.com\\/edd-sl\\/package_download\\/MTYzNTk3NzQxODphY3RpdmF0ZWQ6MTo2ODMzOGExMmE4NTM5YWJmMWJjNjZhMjRhNzNhYmFkNjpodHRwQC8vc3R5bG9zb3VsLmdydXBvZ2FsaWxlby5jb20uY286MA==","download_link":"https:\\/\\/my.elementor.com\\/edd-sl\\/package_download\\/MTYzNTk3NzQxODphY3RpdmF0ZWQ6MTo2ODMzOGExMmE4NTM5YWJmMWJjNjZhMjRhNzNhYmFkNjpodHRwQC8vc3R5bG9zb3VsLmdydXBvZ2FsaWxlby5jb20uY286MA==","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:\\/\\/ps.w.org\\/elementor\\/assets\\/icon.svg"},"canary_deployment":{"plugin_info":{"new_version":"3.5.0","name":"Elementor Pro","slug":"elementor-pro","url":"https:\\/\\/elementor.com\\/pro\\/changelog\\/","homepage":"https:\\/\\/elementor.com\\/pro\\/","requires":"5.0","tested":"5.8.1","elementor_requires":"3.0.1","package":"https:\\/\\/my.elementor.com\\/edd-sl\\/previous_download\\/MTYzNTk3NzQxODphY3RpdmF0ZWQ6MTozLjUuMDowZTE5MTQ1MTliMzM3ZDFlNDZjMzZkNGM1NGNmZWQ0ZTpodHRwQC8vc3R5bG9zb3VsLmdydXBvZ2FsaWxlby5jb20uY28=","download_link":"https:\\/\\/my.elementor.com\\/edd-sl\\/previous_download\\/MTYzNTk3NzQxODphY3RpdmF0ZWQ6MTozLjUuMDowZTE5MTQ1MTliMzM3ZDFlNDZjMzZkNGM1NGNmZWQ0ZTpodHRwQC8vc3R5bG9zb3VsLmdydXBvZ2FsaWxlby5jb20uY28=","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:\\/\\/ps.w.org\\/elementor\\/assets\\/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"}]]}}";}', 'yes'),
(382, '_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:65:"https://downloads.wordpress.org/release/es_ES/wordpress-5.8.1.zip";s:6:"locale";s:5:"es_ES";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:65:"https://downloads.wordpress.org/release/es_ES/wordpress-5.8.1.zip";s:10:"no_content";s:0:"";s:11:"new_bundled";s:0:"";s:7:"partial";s:0:"";s:8:"rollback";s:0:"";}s:7:"current";s:5:"5.8.1";s:7:"version";s:5:"5.8.1";s:11:"php_version";s:6:"5.6.20";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"5.6";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1636407210;s:15:"version_checked";s:5:"5.8.1";s:12:"translations";a:0:{}}', 'no'),
(384, '_site_transient_update_themes', 'O:8:"stdClass":5:{s:12:"last_checked";i:1636407211;s:7:"checked";a:5:{s:21:"hello-elementor-child";s:16:"2.4.1.1635845732";s:15:"hello-elementor";s:5:"2.4.1";s:14:"twentynineteen";s:3:"2.1";s:12:"twentytwenty";s:3:"1.8";s:15:"twentytwentyone";s:3:"1.4";}s:8:"response";a:0:{}s:9:"no_update";a:4:{s:15:"hello-elementor";a:6:{s:5:"theme";s:15:"hello-elementor";s:11:"new_version";s:5:"2.4.1";s:3:"url";s:45:"https://wordpress.org/themes/hello-elementor/";s:7:"package";s:63:"https://downloads.wordpress.org/theme/hello-elementor.2.4.1.zip";s:8:"requires";s:3:"4.7";s:12:"requires_php";s:3:"5.6";}s:14:"twentynineteen";a:6:{s:5:"theme";s:14:"twentynineteen";s:11:"new_version";s:3:"2.1";s:3:"url";s:44:"https://wordpress.org/themes/twentynineteen/";s:7:"package";s:60:"https://downloads.wordpress.org/theme/twentynineteen.2.1.zip";s:8:"requires";s:5:"4.9.6";s:12:"requires_php";s:5:"5.2.4";}s:12:"twentytwenty";a:6:{s:5:"theme";s:12:"twentytwenty";s:11:"new_version";s:3:"1.8";s:3:"url";s:42:"https://wordpress.org/themes/twentytwenty/";s:7:"package";s:58:"https://downloads.wordpress.org/theme/twentytwenty.1.8.zip";s:8:"requires";s:3:"4.7";s:12:"requires_php";s:5:"5.2.4";}s:15:"twentytwentyone";a:6:{s:5:"theme";s:15:"twentytwentyone";s:11:"new_version";s:3:"1.4";s:3:"url";s:45:"https://wordpress.org/themes/twentytwentyone/";s:7:"package";s:61:"https://downloads.wordpress.org/theme/twentytwentyone.1.4.zip";s:8:"requires";s:3:"5.3";s:12:"requires_php";s:3:"5.6";}}s:12:"translations";a:0:{}}', 'no'),
(385, 'current_theme', 'Hello Elementor', 'yes'),
(386, 'theme_mods_hello-elementor', 'a:4:{i:0;b:0;s:18:"nav_menu_locations";a:1:{s:6:"menu-1";i:3;}s:18:"custom_css_post_id";i:-1;s:11:"custom_logo";i:44;}', 'yes'),
(387, 'theme_switched', '', 'yes'),
(388, 'hello_theme_version', '2.4.1', 'yes'),
(389, 'elementor_fonts_manager_font_types', 'a:0:{}', 'yes'),
(390, 'elementor_fonts_manager_fonts', 'a:0:{}', 'yes'),
(391, 'elementor_custom_icon_sets_config', 'a:0:{}', 'yes'),
(393, 'chld_thm_cfg_options_configvars', 'a:40:{s:8:"addl_css";N;s:8:"forcedep";N;s:8:"swappath";N;s:8:"cssunreg";N;s:9:"csswphead";N;s:10:"cssnotheme";N;s:7:"reorder";N;s:10:"parnt_deps";N;s:10:"child_deps";a:3:{i:0;s:15:"hello-elementor";i:1;s:15:"hello-elementor";i:2;s:27:"hello-elementor-theme-style";}s:9:"hasstyles";i:1;s:11:"parntloaded";s:15:"hello-elementor";s:11:"childloaded";N;s:11:"ignoreparnt";N;s:9:"qpriority";i:10;s:9:"mpriority";i:10;s:7:"enqueue";s:7:"enqueue";s:8:"handling";s:7:"primary";s:9:"templates";a:13:{i:0;s:9:"index.php";i:1;s:11:"sidebar.php";i:2;s:10:"footer.php";i:3;s:10:"header.php";i:4;s:12:"comments.php";i:5;s:22:"template-parts/404.php";i:6;s:26:"template-parts/archive.php";i:7;s:25:"template-parts/footer.php";i:8;s:25:"template-parts/header.php";i:9;s:25:"template-parts/search.php";i:10;s:33:"template-parts/dynamic-footer.php";i:11;s:33:"template-parts/dynamic-header.php";i:12;s:25:"template-parts/single.php";}s:7:"max_sel";N;s:7:"imports";a:2:{s:5:"child";a:0:{}s:5:"parnt";a:0:{}}s:13:"child_version";s:5:"2.4.1";s:12:"child_author";s:14:"Elementor Team";s:10:"child_name";s:21:"Hello Elementor Child";s:14:"child_themeuri";s:97:"https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash";s:15:"child_authoruri";s:86:"https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash";s:11:"child_descr";s:66:"A plain-vanilla &amp; lightweight theme for Elementor page builder";s:10:"child_tags";s:126:"flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready";s:5:"parnt";s:15:"hello-elementor";s:5:"child";s:21:"hello-elementor-child";s:10:"configtype";s:5:"theme";s:6:"valkey";i:92;s:7:"rulekey";i:53;s:5:"qskey";i:76;s:6:"selkey";i:75;s:8:"querykey";i:3;s:8:"tokenkey";N;s:6:"recent";N;s:9:"converted";i:1;s:5:"fsize";i:567;s:7:"version";s:5:"2.5.8";}', 'no');
INSERT INTO `wpui_options` VALUES
(394, 'chld_thm_cfg_options_dict_qs', 'a:76:{i:1;s:3:"1:1";i:2;s:3:"1:2";i:3;s:3:"1:3";i:4;s:3:"1:4";i:5;s:3:"1:5";i:6;s:3:"1:6";i:7;s:3:"1:7";i:8;s:3:"1:8";i:9;s:3:"1:9";i:10;s:4:"1:10";i:11;s:4:"2:11";i:12;s:4:"2:12";i:13;s:4:"2:13";i:14;s:4:"3:14";i:15;s:4:"3:15";i:16;s:4:"3:16";i:17;s:4:"3:17";i:18;s:4:"3:18";i:19;s:4:"3:19";i:20;s:4:"3:20";i:21;s:4:"3:21";i:22;s:4:"3:22";i:23;s:4:"3:23";i:24;s:4:"3:24";i:25;s:3:"3:5";i:26;s:4:"3:25";i:27;s:4:"3:26";i:28;s:4:"3:27";i:29;s:4:"3:28";i:30;s:4:"3:29";i:31;s:4:"3:30";i:32;s:4:"3:31";i:33;s:4:"3:32";i:34;s:4:"3:33";i:35;s:4:"3:34";i:36;s:4:"3:35";i:37;s:4:"3:36";i:38;s:4:"3:37";i:39;s:4:"3:38";i:40;s:4:"3:39";i:41;s:4:"3:40";i:42;s:4:"3:41";i:43;s:4:"3:42";i:44;s:4:"3:43";i:45;s:4:"3:44";i:46;s:4:"3:45";i:47;s:4:"3:46";i:48;s:4:"3:47";i:49;s:4:"3:48";i:50;s:4:"3:49";i:51;s:4:"3:50";i:52;s:4:"3:51";i:53;s:4:"3:52";i:54;s:4:"3:53";i:55;s:4:"3:54";i:56;s:4:"3:55";i:57;s:4:"3:56";i:58;s:4:"3:57";i:59;s:4:"3:58";i:60;s:4:"3:59";i:61;s:4:"3:60";i:62;s:4:"3:61";i:63;s:4:"3:62";i:64;s:4:"3:63";i:65;s:4:"3:64";i:66;s:4:"3:65";i:67;s:4:"3:66";i:68;s:4:"3:67";i:69;s:4:"3:68";i:70;s:4:"3:69";i:71;s:4:"3:70";i:72;s:4:"3:71";i:73;s:4:"3:72";i:74;s:4:"3:73";i:75;s:4:"3:74";i:76;s:4:"3:75";}', 'no'),
(395, 'chld_thm_cfg_options_dict_sel', 'a:75:{i:1;s:12:"a, a:visited";i:2;s:13:"a[href]:after";i:3;s:17:"abbr[title]:after";i:4;s:48:"a[href^="#"]:after, a[href^="javascript:"]:after";i:5;s:3:"pre";i:6;s:15:"pre, blockquote";i:7;s:5:"thead";i:8;s:7:"tr, img";i:9;s:9:"p, h2, h3";i:10;s:6:"h2, h3";i:11;s:11:"table table";i:12;s:30:"table table th, table table td";i:13;s:14:"table table th";i:14;s:4:"html";i:15;s:4:"body";i:16;s:22:"h1, h2, h3, h4, h5, h6";i:17;s:2:"h1";i:18;s:2:"h2";i:19;s:2:"h3";i:20;s:2:"h4";i:21;s:2:"h5";i:22;s:2:"h6";i:23;s:1:"p";i:24;s:2:"hr";i:25;s:1:"a";i:26;s:17:"a:hover, a:active";i:27;s:29:"a:not([href]):not([tabindex])";i:28;s:72:"a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus";i:29;s:35:"a:not([href]):not([tabindex]):focus";i:30;s:11:"abbr[title]";i:31;s:9:"b, strong";i:32;s:15:"code, kbd, samp";i:33;s:5:"small";i:34;s:8:"sub, sup";i:35;s:3:"sub";i:36;s:3:"sup";i:37;s:3:"img";i:38;s:7:"details";i:39;s:7:"summary";i:40;s:10:"figcaption";i:41;s:8:"template";i:42;s:8:"[hidden]";i:43;s:8:".sr-only";i:44;s:5:"label";i:45;s:41:"button, input, optgroup, select, textarea";i:46;s:183:"input[type="text"], input[type="date"], input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="url"], select, textarea";i:47;s:243:"input[type="text"]:focus, input[type="date"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="url"]:focus, select:focus, textarea:focus";i:48;s:13:"button, input";i:49;s:14:"button, select";i:50;s:56:"button, [type="button"], [type="reset"], [type="submit"]";i:51;s:128:"button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner";i:52;s:116:"button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring";i:53;s:40:"button, [type="submit"], [type="button"]";i:54;s:58:"button:focus, [type="submit"]:focus, [type="button"]:focus";i:55;s:118:"button:hover, button:focus, [type="submit"]:hover, [type="submit"]:focus, [type="button"]:hover, [type="button"]:focus";i:56;s:85:"button:not(:disabled), [type="submit"]:not(:disabled), [type="button"]:not(:disabled)";i:57;s:8:"fieldset";i:58;s:6:"legend";i:59;s:8:"progress";i:60;s:8:"textarea";i:61;s:33:"[type="checkbox"], [type="radio"]";i:62;s:86:"[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button";i:63;s:15:"[type="search"]";i:64;s:42:"[type="search"]::-webkit-search-decoration";i:65;s:28:"::-webkit-file-upload-button";i:66;s:6:"select";i:67;s:5:"table";i:68;s:18:"table th, table td";i:69;s:8:"table th";i:70;s:30:"table thead th, table tfoot th";i:71;s:502:"table caption + thead tr:first-child th, table caption + thead tr:first-child td, table caption + thead tr:first-child th, table caption + thead tr:first-child td, table colgroup + thead tr:first-child th, table colgroup + thead tr:first-child td, table colgroup + thead tr:first-child th, table colgroup + thead tr:first-child td, table thead:first-child tr:first-child th, table thead:first-child tr:first-child td, table thead:first-child tr:first-child th, table thead:first-child tr:first-child td";i:72;s:74:"table tbody > tr:nth-child(odd) > td, table tbody > tr:nth-child(odd) > th";i:73;s:52:"table tbody tr:hover > td, table tbody tr:hover > th";i:74;s:19:"table tbody + tbody";i:75;s:22:"dl, dt, dd, ol, ul, li";}', 'no'),
(396, 'chld_thm_cfg_options_dict_query', 'a:3:{i:1;s:12:"@media print";i:2;s:25:"@media (max-width: 767px)";i:3;s:4:"base";}', 'no'),
(397, 'chld_thm_cfg_options_dict_rule', 'a:53:{i:1;s:15:"text-decoration";i:2;s:7:"content";i:3;s:11:"white-space";i:4;s:17:"page-break-inside";i:5;s:6:"border";i:6;s:7:"display";i:7;s:7:"orphans";i:8;s:6:"widows";i:9;s:16:"page-break-after";i:10;s:9:"font-size";i:11;s:11:"padding-top";i:12;s:13:"padding-right";i:13;s:14:"padding-bottom";i:14;s:12:"padding-left";i:15;s:11:"line-height";i:16;s:11:"font-weight";i:17;s:24:"-webkit-text-size-adjust";i:18;s:10:"margin-top";i:19;s:12:"margin-right";i:20;s:13:"margin-bottom";i:21;s:11:"margin-left";i:22;s:11:"font-family";i:23;s:5:"color";i:24;s:16:"background-color";i:25;s:14:"font-smoothing";i:26;s:23:"-moz-osx-font-smoothing";i:27;s:10:"box-sizing";i:28;s:6:"height";i:29;s:8:"overflow";i:30;s:7:"outline";i:31;s:13:"border-bottom";i:32;s:8:"position";i:33;s:14:"vertical-align";i:34;s:6:"bottom";i:35;s:3:"top";i:36;s:12:"border-style";i:37;s:9:"max-width";i:38;s:10:"font-style";i:39;s:5:"width";i:40;s:4:"clip";i:41;s:13:"border-radius";i:42;s:10:"transition";i:43;s:12:"border-color";i:44;s:14:"text-transform";i:45;s:18:"-webkit-appearance";i:46;s:10:"text-align";i:47;s:11:"user-select";i:48;s:6:"cursor";i:49;s:6:"resize";i:50;s:14:"outline-offset";i:51;s:14:"border-spacing";i:52;s:15:"border-collapse";i:53;s:10:"border-top";}', 'no'),
(398, 'chld_thm_cfg_options_dict_val', 'a:92:{i:1;s:9:"underline";i:2;s:19:"" (" attr(href) ")"";i:3;s:20:"" (" attr(title) ")"";i:4;s:2:"""";i:5;s:8:"pre-wrap";i:6;s:5:"avoid";i:7;s:14:"1px solid #ccc";i:8;s:18:"table-header-group";i:9;s:1:"3";i:10;s:5:"0.8em";i:11;s:3:"7px";i:12;s:3:"1.3";i:13;s:3:"400";i:14;s:4:"1.15";i:15;s:4:"100%";i:16;s:1:"0";i:17;s:181:"-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"";i:18;s:4:"1rem";i:19;s:3:"1.5";i:20;s:4:"#333";i:21;s:4:"#fff";i:22;s:11:"antialiased";i:23;s:9:"grayscale";i:24;s:5:".5rem";i:25;s:7:"inherit";i:26;s:3:"500";i:27;s:3:"1.2";i:28;s:6:"2.5rem";i:29;s:4:"2rem";i:30;s:7:"1.75rem";i:31;s:6:"1.5rem";i:32;s:7:"1.25rem";i:33;s:5:".9rem";i:34;s:11:"content-box";i:35;s:7:"visible";i:36;s:20:"monospace, monospace";i:37;s:3:"1em";i:38;s:11:"transparent";i:39;s:4:"none";i:40;s:4:"#c36";i:41;s:4:"#336";i:42;s:16:"underline dotted";i:43;s:6:"bolder";i:44;s:3:"80%";i:45;s:3:"75%";i:46;s:8:"relative";i:47;s:8:"baseline";i:48;s:7:"-0.25em";i:49;s:6:"-0.5em";i:50;s:4:"auto";i:51;s:5:"block";i:52;s:9:"list-item";i:53;s:4:"16px";i:54;s:3:"1.4";i:55;s:6:"italic";i:56;s:8:"absolute";i:57;s:3:"1px";i:58;s:6:"hidden";i:59;s:16:"rect(0, 0, 0, 0)";i:60;s:6:"nowrap";i:61;s:12:"inline-block";i:62;s:1:"1";i:63;s:6:"middle";i:64;s:14:"solid 1px #666";i:65;s:3:"3px";i:66;s:6:"0.5rem";i:67;s:7:"all .3s";i:68;s:6:"0 none";i:69;s:6:"button";i:70;s:21:"1px dotted ButtonText";i:71;s:6:"center";i:72;s:14:"1px solid #c36";i:73;s:33:"5px auto -webkit-focus-ring-color";i:74;s:7:"pointer";i:75;s:6:"0.35em";i:76;s:6:"0.75em";i:77;s:7:"0.625em";i:78;s:10:"border-box";i:79;s:5:"table";i:80;s:6:"normal";i:81;s:8:"vertical";i:82;s:9:"textfield";i:83;s:4:"-2px";i:84;s:4:"15px";i:85;s:5:"0.9em";i:86;s:8:"collapse";i:87;s:3:"top";i:88;s:4:"bold";i:89;s:7:"#f7f7f7";i:90;s:7:"#e9e9e9";i:91;s:14:"2px solid #ccc";i:92;s:0:"";}', 'no'),
(399, 'chld_thm_cfg_options_dict_seq', 'a:0:{}', 'no'),
(400, 'chld_thm_cfg_options_dict_token', 'a:0:{}', 'no'),
(401, 'chld_thm_cfg_options_val_ndx', 'a:76:{i:1;s:12:"VE=hT?GUZA$A";i:2;s:12:"EH=hT?GUpA$A";i:3;s:12:"EH=hT?GU5A$A";i:4;s:12:"EH=hT?GU/A$A";i:5;s:13:">J=hT?GU"tlBA";i:6;s:24:"!M=hT?GUOBlBrL.4Fxs@BABA";i:7;s:13:"bS=hT?GUuBlBA";i:8;s:13:"9M=hT?GUOBlBA";i:9;s:24:"LV=hT?GU!BlB3L.4FxrjCABA";i:10;s:13:"(a=hT?GUOBlBA";i:11;s:13:"yd=hT?GU>BlBA";i:12;s:57:"lg=hT?GUDClB,L.4Fxs@CA1k=hT?GUDClB?L.4Fxs@CATq=hT?GUTClBA";i:13;s:13:"nu=hT?GUjClBA";i:14;s:24:"5r=hT?GUzClBAM.4Fxs@DABA";i:15;s:134:"Q0=hT?GU^ClBIM.4Fx}MEAZ4=hT?GU^ClBQM.4Fx}MEA]9=hT?GUIDlB#L.4Fx~5EACt=hT?GUjClB^L.4Fxs@EA%$=hT?GU4DlBcM.4FxrjFAf+=hT?GU}DlBkM.4Fxs@FABA";i:16;s:68:"K0=hT?GUdElBMM.4Fx~5EA]9=hT?GUtElB|L.4Fx~5GATq=hT?GU=ElBYM.4FxrjGABA";i:17;s:13:"yd=hT?GUCFlBA";i:18;s:13:"yd=hT?GUSFlBA";i:19;s:13:"yd=hT?GUiFlBA";i:20;s:13:"yd=hT?GUyFlBA";i:21;s:13:"yd=hT?GU&FlBA";i:22;s:13:"yd=hT?GUYDlBA";i:23;s:24:"G0=hT?GU^ClBMM.4FxrjIABA";i:24;s:35:"k==hT?GUHGlBsM.4Fx}MEA2[=hT?GUXGlBA";i:25;s:35:"e#=hT?GUnGlB#L.4FxrjJApI=hT?GU~AlBA";i:26;s:35:"|)=hT?GU,GlBbL.4Fxs@JA%$=hT?GUMHlBA";i:27;s:13:"L&=hT?GUcHlBA";i:28;s:24:"M&=hT?GUtElBbL.4Fxs@JABA";i:29;s:24:"M&=hT?GUtElBbL.4Fxs@JABA";i:30;s:13:":`=hT?GU^ClBA";i:31;s:24:"6}=hT?GU|GlBbL.4Fx~5KABA";i:32;s:13:"nu=hT?GU8HlBA";i:33;s:24:"d#=hT?GUnGlB#L.4FxrjJABA";i:34;s:13:"yd=hT?GU<HlBA";i:35;s:45:"1d=hT?GUBIlB^L.4Fx}MEAD"_Q3nE3IE$AQDSOYM6|DtA";i:36;s:13:"EH>hT?GUxIlBA";i:37;s:13:">J>hT?GU%IlBA";i:38;s:35:"#M>hT?GU|GlBsM.4Fx~5MAHO>hT?GU(ClBA";i:39;s:13:"bS=hT?GUGJlBA";i:40;s:13:"bS=hT?GUWJlBA";i:41;s:57:"2d=hT?GUmJlBYM.4Fx}MFATq=hT?GU2JlB_M.4Fxs@NACt=hT?GUjClBA";i:42;s:13:"bS=hT?GU|GlBA";i:43;s:13:"bS=hT?GU|GlBA";i:44;s:123:"wB>hT?GU{JlB}M.4FxrjOA,>=hT?GULKlB(L.4Fx}MEA+h=hT?GU^ClB;L.4Fx}MEAkn=hT?GU^ClBwM.4Fx~5OAvW>hT?GUrKlBjL.4Fx}MPAHO=hT?GU^ClBA";i:45;s:35:"dS=hT?GU;KlB^L.4Fx~5PA;C>hT?GUQLlBA";i:46;s:79:"i#=hT?GUtElB#L.4Fx~5EATq=hT?GUoDlBEM.4Fx}MEAq1=hT?GU^ClBMM.4Fx}MEAI7=hT?GU^ClBA";i:47;s:90:"RV>hT?GU(ClBrL.4Fx}MQAeZ>hT?GUwLlB(L.4Fx~5QA+h=hT?GUYDlB;L.4Fx~5QAkn=hT?GUYDlBJN.4Fxs@QABA";i:48;s:24:"ig>hT?GU4DlB0M.4Fx}MRABA";i:49;s:13:"A^=hT?GUXGlBA";i:50;s:13:"Qj>hT?GU|GlBA";i:51;s:24:"LV>hT?GU[IlBVN.4FxrjRABA";i:52;s:57:"%M>hT?GU|GlB(L.4Fx}MEA+h=hT?GU^ClB;L.4Fx}MEAkn=hT?GU^ClBA";i:53;s:13:":`=hT?GUlMlBA";i:54;s:167:"pS=hT?GU;KlB|L.4FxrjDA%$=hT?GUMHlBZN.4Fxs@RApI=hT?GU7KlBdN.4Fxs@JAw(=hT?GU,GlBrL.4Fx}MSA|e=hT?GU$LlB,L.4Fx~5EA1k=hT?GU$LlB?L.4Fx~5EANc=hT?GUYDlBFN.4FxrjQANc>hT?GU@LlBA";i:55;s:13:":`=hT?GU`MlBA";i:56;s:35:"N&=hT?GU.DlBcM.4Fx}MKA;C=hT?GU|GlBA";i:57;s:13:"nu>hT?GUKNlBA";i:58;s:46:"kg=hT?GUaNlB,L.4Fx}MTA1k=hT?GU6NlB?L.4Fx}MTABA";i:59;s:101:"q==hT?GU:NlBYM.4FxrjGA[Q=hT?GU"NlB@M.4Fxs@DA|e=hT?GU^ClB,L.4Fx}MEA1k=hT?GU^ClB?L.4Fx}MEApI=hT?GUPOlBA";i:60;s:13:"VE>hT?GUhIlBA";i:61;s:24:"B^=hT?GU[IlBlN.4FxrjUABA";i:62;s:57:"m==hT?GU:NlB(L.4Fx}MEA+h=hT?GU^ClB;L.4Fx}MEAkn=hT?GU^ClBA";i:63;s:13:"R@=hT?GU[IlBA";i:64;s:24:"Am>hT?GUvOlBpN.4Fxs@UABA";i:65;s:13:""l>hT?GU|GlBA";i:66;s:24:"Am>hT?GUVMlBUM.4FxrjGABA";i:67;s:13:"bS=hT?GUGJlBA";i:68;s:68:"")=hT?GU,GlB}M.4Fxs@DAZ4=hT?GU?OlB#L.4FxrjVAq1>hT?GU^ClBxN.4Fx~5VABA";i:69;s:79:"ng=hT?GU?OlB,L.4Fx}MVA1k=hT?GU?OlB?L.4Fx}MVATq=hT?GUoDlB$M.4Fxs@VAHO=hT?GUeBlBA";i:70;s:13:"nu=hT?GU0PlBA";i:71;s:13:"yd=hT?GU3GlBA";i:72;s:13:"t8>hT?GUeBlBA";i:73;s:13:"`)=hT?GU)PlBA";i:74;s:13:"`)=hT?GU_PlBA";i:75;s:13:"t8>hT?GUJQlBA";i:76;s:79:"L0=hT?GU^ClBMM.4Fx}MEAHO=hT?GU^ClB0M.4Fx}MEANc=hT?GU(ClB$M.4Fxs@LAw(=hT?GU,GlBA";}', 'no'),
(405, 'widget_recent-comments', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(406, 'widget_recent-posts', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(409, 'theme_mods_hello-elementor-child', 'a:1:{s:18:"custom_css_post_id";i:-1;}', 'yes'),
(411, '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'),
(412, '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'),
(413, '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'),
(415, 'elementor_connect_site_key', 'e54b722812c2f82e69bddef3f6610a5f', 'yes'),
(416, 'elementor_controls_usage', 'a:2:{s:6:"header";a:5:{s:15:"theme-site-logo";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:2;}}s:7:"content";a:1:{s:13:"section_image";a:5:{s:12:"align_tablet";i:1;s:12:"align_mobile";i:1;s:5:"image";i:1;s:10:"image_size";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:5:"width";i:1;s:12:"width_mobile";i:1;}}}}s:6:"column";a:2:{s:5:"count";i:3;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:3;s:19:"_inline_size_mobile";i:3;s:19:"_inline_size_tablet";i:3;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_mobile";i:2;s:13:"margin_tablet";i:1;}}}}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:5:{s:11:"align_items";i:1;s:14:"animation_line";i:1;s:14:"animation_text";i:1;s:10:"full_width";i:1;s:12:"toggle_align";i:1;}}s:5:"style";a:3:{s:23:"section_style_main-menu";a:13:{s:15:"color_menu_item";i:1;s:21:"color_menu_item_hover";i:1;s:29:"pointer_color_menu_item_hover";i:1;s:26:"menu_typography_typography";i:1;s:25:"menu_typography_font_size";i:1;s:13:"pointer_width";i:1;s:30:"menu_typography_text_transform";i:1;s:32:"menu_typography_font_size_tablet";i:1;s:18:"menu_space_between";i:1;s:25:"menu_space_between_tablet";i:1;s:27:"menu_typography_font_weight";i:1;s:26:"padding_vertical_menu_item";i:1;s:27:"menu_typography_font_family";i:1;}s:22:"section_style_dropdown";a:7:{s:19:"color_dropdown_item";i:1;s:30:"background_color_dropdown_item";i:1;s:25:"color_dropdown_item_hover";i:1;s:36:"background_color_dropdown_item_hover";i:1;s:30:"dropdown_typography_typography";i:1;s:29:"dropdown_typography_font_size";i:1;s:28:"dropdown_top_distance_mobile";i:1;}s:12:"style_toggle";a:6:{s:12:"toggle_color";i:1;s:18:"toggle_color_hover";i:1;s:11:"toggle_size";i:1;s:19:"toggle_border_width";i:1;s:20:"toggle_border_radius";i:1;s:23:"toggle_background_color";i:1;}}}}s:12:"social-icons";a:2:{s:5:"count";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:19:"section_social_icon";a:5:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:12:"align_tablet";i:1;s:12:"align_mobile";i:1;}}s:5:"style";a:1:{s:20:"section_social_style";a:3:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;}}s:8:"advanced";a:1:{s:19:"_section_responsive";a:1:{s:11:"hide_mobile";i:1;}}}}s:7:"section";a:2:{s:5:"count";i:1;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:1;s:13:"custom_height";i:1;s:16:"content_position";i:1;s:8:"html_tag";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:5:"style";a:3:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:4:{s:21:"box_shadow_box_shadow";i:1;s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;}s:21:"section_shape_divider";a:2:{s:17:"shape_divider_top";i:1;s:24:"shape_divider_top_height";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:5:{s:6:"margin";i:1;s:14:"padding_tablet";i:1;s:7:"z_index";i:1;s:14:"padding_mobile";i:1;s:7:"padding";i:1;}s:15:"section_effects";a:1:{s:6:"sticky";i:1;}}}}}s:7:"wp-page";a:3:{s:5:"image";a:2:{s:5:"count";i:12;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:12;s:10:"image_size";i:2;}}s:8:"advanced";a:2:{s:14:"_section_style";a:2:{s:7:"_margin";i:8;s:8:"_padding";i:3;}s:15:"section_effects";a:9:{s:29:"motion_fx_motion_fx_scrolling";i:3;s:27:"motion_fx_translateX_effect";i:1;s:26:"motion_fx_translateX_speed";i:1;s:27:"motion_fx_translateY_effect";i:1;s:30:"motion_fx_translateY_direction";i:1;s:25:"motion_fx_motion_fx_mouse";i:3;s:27:"motion_fx_mouseTrack_effect";i:4;s:26:"motion_fx_mouseTrack_speed";i:3;s:22:"motion_fx_scale_effect";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:3:{s:13:"opacity_hover";i:4;s:7:"opacity";i:3;s:5:"width";i:1;}}}}s:6:"column";a:2:{s:5:"count";i:15;s:8:"controls";a:1:{s:6:"layout";a:1:{s:6:"layout";a:1:{s:12:"_inline_size";i:15;}}}}s:7:"section";a:2:{s:5:"count";i:7;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:6:"layout";i:2;s:3:"gap";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:5;}}s:5:"style";a:3:{s:26:"section_background_overlay";a:4:{s:29:"background_overlay_background";i:1;s:24:"background_overlay_image";i:1;s:26:"background_overlay_opacity";i:1;s:24:"background_overlay_color";i:1;}s:18:"section_background";a:11:{s:21:"background_background";i:6;s:16:"background_image";i:5;s:19:"background_position";i:1;s:21:"background_attachment";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:18:"background_color_b";i:1;s:19:"background_bg_width";i:1;s:16:"background_color";i:2;s:28:"background_slideshow_gallery";i:1;s:27:"background_hover_transition";i:1;}s:21:"section_shape_divider";a:3:{s:17:"shape_divider_top";i:6;s:23:"shape_divider_top_width";i:3;s:24:"shape_divider_top_height";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:6:"margin";i:1;s:7:"padding";i:1;}}}}}}', 'no'),
(417, 'elementor_pro_theme_builder_conditions', 'a:1:{s:6:"header";a:1:{i:8;a:1:{i:0;s:15:"include/general";}}}', 'yes'),
(418, '_elementor_global_css', 'a:6:{s:4:"time";i:1635845836;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;b:0;}', 'yes'),
(431, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(437, 'site_logo', '44', 'yes'),
(444, 'elementor_library_category_children', 'a:0:{}', 'yes'),
(448, 'elementor_log', 'a:1:{s:32:"2cc3fadf832176ee6086ee0cb2692535";O:31:"Elementor\\Core\\Logger\\Items\\PHP":9:{s:7:"\0*\0file";s:109:"/home/deugdyrc/stylosoul.grupogalileo.com.co/wp-content/plugins/elementor/core/common/modules/ajax/module.php";s:7:"\0*\0line";i:171;s:7:"\0*\0date";s:19:"2021-11-02 09:57:49";s:7:"\0*\0type";s:6:"notice";s:10:"\0*\0message";s:21:"Undefined index: data";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:6;s:14:"\0*\0times_dates";a:6:{i:0;s:19:"2021-11-02 09:57:49";i:1;s:19:"2021-11-02 09:59:21";i:2;s:19:"2021-11-02 10:04:41";i:3;s:19:"2021-11-02 10:16:15";i:4;s:19:"2021-11-02 10:29:00";i:5;s:19:"2021-11-02 22:10:18";}s:7:"\0*\0args";a:5:{s:4:"type";s:6:"notice";s:7:"message";s:21:"Undefined index: data";s:4:"file";s:109:"/home/deugdyrc/stylosoul.grupogalileo.com.co/wp-content/plugins/elementor/core/common/modules/ajax/module.php";s:4:"line";i:171;s:5:"trace";b:1;}}}', 'no'),
(674, '_transient_health-check-site-status-result', '{"good":13,"recommended":6,"critical":0}', 'yes'),
(730, '_site_transient_timeout_theme_roots', '1636409011', 'no'),
(731, '_site_transient_theme_roots', 'a:5:{s:21:"hello-elementor-child";s:7:"/themes";s:15:"hello-elementor";s:7:"/themes";s:14:"twentynineteen";s:7:"/themes";s:12:"twentytwenty";s:7:"/themes";s:15:"twentytwentyone";s:7:"/themes";}', 'no'),
(732, '_site_transient_update_plugins', 'O:8:"stdClass":5:{s:12:"last_checked";i:1636407211;s:8:"response";a:1:{s:23:"elementor/elementor.php";O:8:"stdClass":12:{s:2:"id";s:23:"w.org/plugins/elementor";s:4:"slug";s:9:"elementor";s:6:"plugin";s:23:"elementor/elementor.php";s:11:"new_version";s:5:"3.4.7";s:3:"url";s:40:"https://wordpress.org/plugins/elementor/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/elementor.3.4.7.zip";s:5:"icons";a:3:{s:2:"2x";s:62:"https://ps.w.org/elementor/assets/icon-256x256.png?rev=2622511";s:2:"1x";s:54:"https://ps.w.org/elementor/assets/icon.svg?rev=2597493";s:3:"svg";s:54:"https://ps.w.org/elementor/assets/icon.svg?rev=2597493";}s:7:"banners";a:2:{s:2:"2x";s:65:"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=2597493";s:2:"1x";s:64:"https://ps.w.org/elementor/assets/banner-772x250.png?rev=2597493";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"5.0";s:6:"tested";s:5:"5.8.1";s:12:"requires_php";s:3:"5.6";}}s:12:"translations";a:0:{}s:9:"no_update";a:4:{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:"4.2.1";s:3:"url";s:38:"https://wordpress.org/plugins/akismet/";s:7:"package";s:56:"https://downloads.wordpress.org/plugin/akismet.4.2.1.zip";s:5:"icons";a:2:{s:2:"2x";s:59:"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272";s:2:"1x";s:59:"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272";}s:7:"banners";a:1:{s:2:"1x";s:61:"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"5.0";}s:53:"child-theme-configurator/child-theme-configurator.php";O:8:"stdClass":10:{s:2:"id";s:38:"w.org/plugins/child-theme-configurator";s:4:"slug";s:24:"child-theme-configurator";s:6:"plugin";s:53:"child-theme-configurator/child-theme-configurator.php";s:11:"new_version";s:5:"2.5.8";s:3:"url";s:55:"https://wordpress.org/plugins/child-theme-configurator/";s:7:"package";s:73:"https://downloads.wordpress.org/plugin/child-theme-configurator.2.5.8.zip";s:5:"icons";a:1:{s:2:"1x";s:77:"https://ps.w.org/child-theme-configurator/assets/icon-128x128.png?rev=1557885";}s:7:"banners";a:1:{s:2:"1x";s:79:"https://ps.w.org/child-theme-configurator/assets/banner-772x250.jpg?rev=1557885";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"4.0";}s:9:"hello.php";O:8:"stdClass":10:{s:2:"id";s:25:"w.org/plugins/hello-dolly";s:4:"slug";s:11:"hello-dolly";s:6:"plugin";s:9:"hello.php";s:11:"new_version";s:5:"1.7.2";s:3:"url";s:42:"https://wordpress.org/plugins/hello-dolly/";s:7:"package";s:60:"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip";s:5:"icons";a:2:{s:2:"2x";s:64:"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855";s:2:"1x";s:64:"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855";}s:7:"banners";a:1:{s:2:"1x";s:66:"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"4.6";}s:35:"litespeed-cache/litespeed-cache.php";O:8:"stdClass":10:{s:2:"id";s:29:"w.org/plugins/litespeed-cache";s:4:"slug";s:15:"litespeed-cache";s:6:"plugin";s:35:"litespeed-cache/litespeed-cache.php";s:11:"new_version";s:5:"4.4.3";s:3:"url";s:46:"https://wordpress.org/plugins/litespeed-cache/";s:7:"package";s:64:"https://downloads.wordpress.org/plugin/litespeed-cache.4.4.3.zip";s:5:"icons";a:2:{s:2:"2x";s:68:"https://ps.w.org/litespeed-cache/assets/icon-256x256.png?rev=2554181";s:2:"1x";s:68:"https://ps.w.org/litespeed-cache/assets/icon-128x128.png?rev=2554181";}s:7:"banners";a:2:{s:2:"2x";s:71:"https://ps.w.org/litespeed-cache/assets/banner-1544x500.png?rev=2554181";s:2:"1x";s:70:"https://ps.w.org/litespeed-cache/assets/banner-772x250.png?rev=2554181";}s:11:"banners_rtl";a:0:{}s:8:"requires";s:3:"4.0";}}s:7:"checked";a:6:{s:19:"akismet/akismet.php";s:5:"4.2.1";s:53:"child-theme-configurator/child-theme-configurator.php";s:5:"2.5.8";s:23:"elementor/elementor.php";s:5:"3.3.0";s:31:"elementor-pro/elementor-pro.php";s:5:"3.3.2";s:9:"hello.php";s:5:"1.7.2";s:35:"litespeed-cache/litespeed-cache.php";s:5:"4.4.3";}}', 'no');

-- --------------------------------------------------------

--
-- Table structure for table `wpui_postmeta`
--

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

--
-- Dumping data for table `wpui_postmeta`
--

INSERT INTO `wpui_postmeta` VALUES
(1, 2, '_wp_page_template', 'default'),
(2, 3, '_wp_page_template', 'default'),
(5, 6, '_elementor_edit_mode', 'builder'),
(6, 6, '_elementor_template_type', 'kit'),
(9, 6, '_elementor_css', 'a:6:{s:4:"time";i:1635845716;s:5:"fonts";a:2:{i:0;s:6:"Roboto";i:1;s:11:"Roboto Slab";}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(10, 8, '_elementor_edit_mode', 'builder'),
(11, 8, '_elementor_template_type', 'header'),
(12, 9, '_elementor_edit_mode', 'builder'),
(13, 9, '_elementor_template_type', 'header'),
(14, 8, '_elementor_version', '3.3.0'),
(15, 8, '_elementor_pro_version', '3.3.2'),
(16, 8, '_edit_lock', '1635932718:1'),
(17, 10, '_wp_attached_file', '2021/11/placeholder.png'),
(18, 10, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:800;s:4:"file";s:23:"2021/11/placeholder.png";s:5:"sizes";a:4:{s:6:"medium";a:4:{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:5:"large";a:4:{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:9:"thumbnail";a:4:{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:12:"medium_large";a:4:{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:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(19, 10, '_elementor_source_image_hash', '27b349662e5e129f40d6072e740155c0404a7665'),
(20, 8, '_wp_page_template', 'default'),
(21, 8, '_elementor_data', '[{"id":"626d9291","elType":"section","settings":{"gap":"no","custom_height":{"unit":"px","size":150},"content_position":"middle","structure":"33","background_background":"classic","background_color":"#FFB10B87","margin":{"unit":"px","top":"-12","right":0,"bottom":"11","left":0,"isLinked":false},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":24,"spread":0,"color":"rgba(0,0,0,0.15)"},"z_index":1,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#d3d3d3","padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"sticky":"top","html_tag":"header","shape_divider_top":"mountains","padding":{"unit":"px","top":"48","right":"0","bottom":"0","left":"0","isLinked":false},"shape_divider_top_height":{"unit":"px","size":49,"sizes":[]}},"elements":[{"id":"6582f694","elType":"column","settings":{"_column_size":25,"_inline_size":20,"_inline_size_mobile":50,"_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1ea1eac1","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]","link":"[elementor-tag id=\\"\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"align_tablet":"left","align_mobile":"left","width":{"unit":"px","size":197},"width_mobile":{"unit":"px","size":80},"image":{"id":10,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/placeholder.png"},"image_size":"large"},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false},{"id":"7ea612f7","elType":"column","settings":{"_column_size":50,"_inline_size":75.526,"_inline_size_mobile":50,"_inline_size_tablet":40,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3fc4e07","elType":"widget","settings":{"align_items":"center","animation_line":"slide","animation_text":"none","color_menu_item":"#54595f","color_menu_item_hover":"#39c7ce","pointer_color_menu_item_hover":"#39c7ce","menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":19},"pointer_width":{"unit":"px","size":3},"color_dropdown_item":"#000000","background_color_dropdown_item":"#f2f2f2","color_dropdown_item_hover":"#39c7ce","background_color_dropdown_item_hover":"#ededed","dropdown_typography_typography":"custom","dropdown_typography_font_size":{"unit":"px","size":15},"toggle_color":"#000000","toggle_color_hover":"#39c7ce","toggle_size":{"unit":"px","size":30},"toggle_border_width":{"unit":"px","size":0},"toggle_border_radius":{"unit":"px","size":0},"menu_typography_text_transform":"uppercase","menu_typography_font_size_tablet":{"unit":"px","size":13},"menu_space_between":{"unit":"px","size":6},"menu_space_between_tablet":{"unit":"px","size":0},"menu_typography_font_weight":"400","padding_vertical_menu_item":{"unit":"px","size":36},"full_width":"stretch","toggle_align":"right","dropdown_top_distance_mobile":{"unit":"px","size":31},"toggle_background_color":"rgba(0,0,0,0)","menu":"stylo-menu","menu_typography_font_family":"Barlow Condensed"},"elements":[],"widgetType":"nav-menu"}],"isInner":false},{"id":"40940c28","elType":"column","settings":{"_column_size":25,"_inline_size":4.474,"_inline_size_mobile":100,"_inline_size_tablet":30},"elements":[{"id":"26e5abc3","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-instagram","_id":"c58d333","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"https:\\/\\/www.instagram.com\\/stylo.mode\\/","is_external":"true","nofollow":"","custom_attributes":""},"__fa4_migrated":{"social_icon":true}}],"shape":"circle","align":"right","icon_size":{"unit":"px","size":13},"icon_padding":{"unit":"em","size":0.9},"icon_spacing":{"unit":"px","size":7},"align_tablet":"right","align_mobile":"center","hide_mobile":"hidden-phone"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]'),
(22, 11, '_elementor_edit_mode', 'builder'),
(23, 11, '_elementor_template_type', 'header'),
(24, 11, '_elementor_version', '3.3.0'),
(25, 11, '_elementor_pro_version', '3.3.2'),
(26, 11, '_wp_page_template', 'default'),
(27, 11, '_elementor_data', '[{"id":"626d9291","elType":"section","settings":{"gap":"no","custom_height":{"unit":"px","size":150},"content_position":"middle","structure":"33","background_background":"classic","background_color":"#ffffff","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":24,"spread":0,"color":"rgba(0,0,0,0.15)"},"z_index":1,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#d3d3d3","padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"sticky":"top","html_tag":"header"},"elements":[{"id":"6582f694","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":50,"_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1ea1eac1","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]","link":"[elementor-tag id=\\"\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"align_tablet":"left","align_mobile":"left","width":{"unit":"px","size":120},"width_mobile":{"unit":"px","size":80},"image":{"id":10,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/placeholder.png"}},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false},{"id":"7ea612f7","elType":"column","settings":{"_column_size":50,"_inline_size":57.281,"_inline_size_mobile":50,"_inline_size_tablet":40,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3fc4e07","elType":"widget","settings":{"align_items":"center","animation_line":"slide","animation_text":"none","color_menu_item":"#54595f","color_menu_item_hover":"#39c7ce","pointer_color_menu_item_hover":"#39c7ce","menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":14},"pointer_width":{"unit":"px","size":3},"color_dropdown_item":"#000000","background_color_dropdown_item":"#f2f2f2","color_dropdown_item_hover":"#39c7ce","background_color_dropdown_item_hover":"#ededed","dropdown_typography_typography":"custom","dropdown_typography_font_size":{"unit":"px","size":15},"toggle_color":"#000000","toggle_color_hover":"#39c7ce","toggle_size":{"unit":"px","size":30},"toggle_border_width":{"unit":"px","size":0},"toggle_border_radius":{"unit":"px","size":0},"menu_typography_text_transform":"uppercase","menu_typography_font_size_tablet":{"unit":"px","size":13},"menu_space_between":{"unit":"px","size":6},"menu_space_between_tablet":{"unit":"px","size":0},"menu_typography_font_weight":"400","padding_vertical_menu_item":{"unit":"px","size":36},"full_width":"stretch","toggle_align":"right","dropdown_top_distance_mobile":{"unit":"px","size":31},"toggle_background_color":"rgba(0,0,0,0)"},"elements":[],"widgetType":"nav-menu"}],"isInner":false},{"id":"40940c28","elType":"column","settings":{"_column_size":25,"_inline_size":17.719,"_inline_size_mobile":100,"_inline_size_tablet":30},"elements":[{"id":"26e5abc3","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-twitter","_id":"022bbc9"},{"social":"fa fa-behance","_id":"bbe0fd0"},{"social":"fa fa-dribbble","_id":"ba39e7d"},{"social":"fa fa-instagram","_id":"c58d333"}],"shape":"circle","align":"right","icon_size":{"unit":"px","size":13},"icon_padding":{"unit":"em","size":0.9},"icon_spacing":{"unit":"px","size":7},"align_tablet":"right","align_mobile":"center","hide_mobile":"hidden-phone"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]'),
(28, 8, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(30, 8, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(32, 12, '_edit_lock', '1635935558:1'),
(33, 12, '_elementor_edit_mode', 'builder'),
(34, 12, '_elementor_template_type', 'wp-page'),
(35, 12, '_elementor_version', '3.3.0'),
(36, 12, '_elementor_pro_version', '3.3.2'),
(38, 14, '_edit_lock', '1635845822:1'),
(39, 16, '_edit_lock', '1635845874:1'),
(40, 18, '_edit_lock', '1635845911:1'),
(41, 20, '_edit_lock', '1635845941:1'),
(42, 22, '_edit_lock', '1635845966:1'),
(43, 24, '_edit_lock', '1635846138:1'),
(44, 25, '_menu_item_type', 'post_type'),
(45, 25, '_menu_item_menu_item_parent', '0'),
(46, 25, '_menu_item_object_id', '22'),
(47, 25, '_menu_item_object', 'page'),
(48, 25, '_menu_item_target', ''),
(49, 25, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(50, 25, '_menu_item_xfn', ''),
(51, 25, '_menu_item_url', ''),
(52, 25, '_menu_item_orphaned', '1635846358'),
(53, 26, '_menu_item_type', 'post_type'),
(54, 26, '_menu_item_menu_item_parent', '0'),
(55, 26, '_menu_item_object_id', '20'),
(56, 26, '_menu_item_object', 'page'),
(57, 26, '_menu_item_target', ''),
(58, 26, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(59, 26, '_menu_item_xfn', ''),
(60, 26, '_menu_item_url', ''),
(61, 26, '_menu_item_orphaned', '1635846359'),
(62, 27, '_menu_item_type', 'post_type'),
(63, 27, '_menu_item_menu_item_parent', '0'),
(64, 27, '_menu_item_object_id', '18'),
(65, 27, '_menu_item_object', 'page'),
(66, 27, '_menu_item_target', ''),
(67, 27, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(68, 27, '_menu_item_xfn', ''),
(69, 27, '_menu_item_url', ''),
(70, 27, '_menu_item_orphaned', '1635846359'),
(71, 28, '_menu_item_type', 'post_type'),
(72, 28, '_menu_item_menu_item_parent', '0'),
(73, 28, '_menu_item_object_id', '16'),
(74, 28, '_menu_item_object', 'page'),
(75, 28, '_menu_item_target', ''),
(76, 28, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(77, 28, '_menu_item_xfn', ''),
(78, 28, '_menu_item_url', ''),
(79, 28, '_menu_item_orphaned', '1635846360'),
(80, 29, '_menu_item_type', 'post_type'),
(81, 29, '_menu_item_menu_item_parent', '0'),
(82, 29, '_menu_item_object_id', '14'),
(83, 29, '_menu_item_object', 'page'),
(84, 29, '_menu_item_target', ''),
(85, 29, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(86, 29, '_menu_item_xfn', ''),
(87, 29, '_menu_item_url', ''),
(88, 29, '_menu_item_orphaned', '1635846361'),
(89, 30, '_menu_item_type', 'post_type'),
(90, 30, '_menu_item_menu_item_parent', '0'),
(91, 30, '_menu_item_object_id', '12'),
(92, 30, '_menu_item_object', 'page'),
(93, 30, '_menu_item_target', ''),
(94, 30, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(95, 30, '_menu_item_xfn', ''),
(96, 30, '_menu_item_url', ''),
(97, 30, '_menu_item_orphaned', '1635846362'),
(98, 31, '_menu_item_type', 'post_type'),
(99, 31, '_menu_item_menu_item_parent', '0'),
(100, 31, '_menu_item_object_id', '22'),
(101, 31, '_menu_item_object', 'page'),
(102, 31, '_menu_item_target', ''),
(103, 31, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(104, 31, '_menu_item_xfn', ''),
(105, 31, '_menu_item_url', ''),
(106, 31, '_menu_item_orphaned', '1635846381'),
(107, 32, '_menu_item_type', 'post_type'),
(108, 32, '_menu_item_menu_item_parent', '0'),
(109, 32, '_menu_item_object_id', '20'),
(110, 32, '_menu_item_object', 'page'),
(111, 32, '_menu_item_target', ''),
(112, 32, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(113, 32, '_menu_item_xfn', ''),
(114, 32, '_menu_item_url', ''),
(115, 32, '_menu_item_orphaned', '1635846381'),
(116, 33, '_menu_item_type', 'post_type'),
(117, 33, '_menu_item_menu_item_parent', '0'),
(118, 33, '_menu_item_object_id', '18'),
(119, 33, '_menu_item_object', 'page'),
(120, 33, '_menu_item_target', ''),
(121, 33, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(122, 33, '_menu_item_xfn', ''),
(123, 33, '_menu_item_url', ''),
(124, 33, '_menu_item_orphaned', '1635846382'),
(125, 34, '_menu_item_type', 'post_type'),
(126, 34, '_menu_item_menu_item_parent', '0'),
(127, 34, '_menu_item_object_id', '16'),
(128, 34, '_menu_item_object', 'page'),
(129, 34, '_menu_item_target', ''),
(130, 34, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(131, 34, '_menu_item_xfn', ''),
(132, 34, '_menu_item_url', ''),
(133, 34, '_menu_item_orphaned', '1635846383'),
(134, 35, '_menu_item_type', 'post_type'),
(135, 35, '_menu_item_menu_item_parent', '0'),
(136, 35, '_menu_item_object_id', '14'),
(137, 35, '_menu_item_object', 'page'),
(138, 35, '_menu_item_target', ''),
(139, 35, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(140, 35, '_menu_item_xfn', ''),
(141, 35, '_menu_item_url', ''),
(142, 35, '_menu_item_orphaned', '1635846384'),
(143, 36, '_menu_item_type', 'post_type'),
(144, 36, '_menu_item_menu_item_parent', '0'),
(145, 36, '_menu_item_object_id', '12'),
(146, 36, '_menu_item_object', 'page'),
(147, 36, '_menu_item_target', ''),
(148, 36, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(149, 36, '_menu_item_xfn', ''),
(150, 36, '_menu_item_url', ''),
(151, 36, '_menu_item_orphaned', '1635846386'),
(152, 37, '_menu_item_type', 'post_type'),
(153, 37, '_menu_item_menu_item_parent', '0'),
(154, 37, '_menu_item_object_id', '12'),
(155, 37, '_menu_item_object', 'page'),
(156, 37, '_menu_item_target', ''),
(157, 37, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(158, 37, '_menu_item_xfn', ''),
(159, 37, '_menu_item_url', ''),
(161, 38, '_menu_item_type', 'post_type'),
(162, 38, '_menu_item_menu_item_parent', '0'),
(163, 38, '_menu_item_object_id', '16'),
(164, 38, '_menu_item_object', 'page'),
(165, 38, '_menu_item_target', ''),
(166, 38, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(167, 38, '_menu_item_xfn', ''),
(168, 38, '_menu_item_url', ''),
(170, 39, '_menu_item_type', 'post_type'),
(171, 39, '_menu_item_menu_item_parent', '0'),
(172, 39, '_menu_item_object_id', '18'),
(173, 39, '_menu_item_object', 'page'),
(174, 39, '_menu_item_target', ''),
(175, 39, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(176, 39, '_menu_item_xfn', ''),
(177, 39, '_menu_item_url', ''),
(179, 40, '_menu_item_type', 'post_type'),
(180, 40, '_menu_item_menu_item_parent', '0'),
(181, 40, '_menu_item_object_id', '14'),
(182, 40, '_menu_item_object', 'page'),
(183, 40, '_menu_item_target', ''),
(184, 40, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(185, 40, '_menu_item_xfn', ''),
(186, 40, '_menu_item_url', ''),
(188, 41, '_menu_item_type', 'post_type'),
(189, 41, '_menu_item_menu_item_parent', '0'),
(190, 41, '_menu_item_object_id', '22'),
(191, 41, '_menu_item_object', 'page'),
(192, 41, '_menu_item_target', ''),
(193, 41, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(194, 41, '_menu_item_xfn', ''),
(195, 41, '_menu_item_url', ''),
(197, 42, '_menu_item_type', 'post_type'),
(198, 42, '_menu_item_menu_item_parent', '0'),
(199, 42, '_menu_item_object_id', '20'),
(200, 42, '_menu_item_object', 'page'),
(201, 42, '_menu_item_target', ''),
(202, 42, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(203, 42, '_menu_item_xfn', ''),
(204, 42, '_menu_item_url', ''),
(206, 43, '_menu_item_type', 'custom'),
(207, 43, '_menu_item_menu_item_parent', '0'),
(208, 43, '_menu_item_object_id', '43'),
(209, 43, '_menu_item_object', 'custom'),
(210, 43, '_menu_item_target', ''),
(211, 43, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(212, 43, '_menu_item_xfn', ''),
(213, 43, '_menu_item_url', '#'),
(215, 44, '_wp_attached_file', '2021/11/logo-web.png'),
(216, 44, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:440;s:4:"file";s:20:"2021/11/logo-web.png";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:20:"logo-web-300x220.png";s:5:"width";i:300;s:6:"height";i:220;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"logo-web-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(217, 45, '_wp_trash_meta_status', 'publish'),
(218, 45, '_wp_trash_meta_time', '1635846531'),
(219, 46, '_elementor_edit_mode', 'builder'),
(220, 46, '_elementor_template_type', 'wp-page'),
(221, 46, '_elementor_version', '3.3.0'),
(222, 46, '_elementor_pro_version', '3.3.2'),
(223, 47, '_elementor_edit_mode', 'builder'),
(224, 47, '_elementor_template_type', 'wp-page'),
(225, 47, '_elementor_version', '3.3.0'),
(226, 47, '_elementor_pro_version', '3.3.2'),
(227, 12, '_wp_page_template', 'default'),
(228, 12, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(229, 12, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]},"shape_divider_top":"opacity-fan","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":59,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-picjumbocom-196667-scaled.jpg","id":194,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit05.png","id":186,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"69","bottom":"69","left":"69","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"e6801fb","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"6ddf1d0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8d00000","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"width":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(230, 48, '_elementor_edit_mode', 'builder'),
(231, 48, '_elementor_template_type', 'wp-page'),
(232, 48, '_elementor_version', '3.3.0'),
(233, 48, '_elementor_pro_version', '3.3.2'),
(234, 48, '_wp_page_template', 'default'),
(235, 48, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(236, 48, '_elementor_data', '[]'),
(237, 12, '_elementor_page_assets', 'a:0:{}'),
(238, 49, '_wp_attached_file', '2021/11/modelo-1.jpg'),
(239, 49, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1000;s:6:"height";i:637;s:4:"file";s:20:"2021/11/modelo-1.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:20:"modelo-1-300x191.jpg";s:5:"width";i:300;s:6:"height";i:191;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"modelo-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"modelo-1-768x489.jpg";s:5:"width";i:768;s:6:"height";i:489;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(240, 50, '_elementor_edit_mode', 'builder'),
(241, 50, '_elementor_template_type', 'wp-page'),
(242, 50, '_elementor_version', '3.3.0'),
(243, 50, '_elementor_pro_version', '3.3.2'),
(244, 50, '_wp_page_template', 'default'),
(245, 50, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(246, 50, '_elementor_data', '[]'),
(247, 50, '_elementor_page_assets', 'a:0:{}'),
(248, 51, '_elementor_edit_mode', 'builder'),
(249, 51, '_elementor_template_type', 'wp-page'),
(250, 51, '_elementor_version', '3.3.0'),
(251, 51, '_elementor_pro_version', '3.3.2'),
(252, 51, '_wp_page_template', 'default'),
(253, 51, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(254, 51, '_elementor_data', '[]'),
(255, 51, '_elementor_page_assets', 'a:0:{}'),
(256, 52, '_elementor_edit_mode', 'builder'),
(257, 52, '_elementor_template_type', 'wp-page'),
(258, 52, '_elementor_version', '3.3.0'),
(259, 52, '_elementor_pro_version', '3.3.2'),
(260, 52, '_wp_page_template', 'default'),
(261, 52, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(262, 52, '_elementor_data', '[{"id":"a19bf2f","elType":"section","settings":[],"elements":[{"id":"888bb3f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"087cc64","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(263, 52, '_elementor_page_assets', 'a:0:{}'),
(266, 53, '_elementor_edit_mode', 'builder'),
(267, 53, '_elementor_template_type', 'header'),
(268, 53, '_elementor_version', '3.3.0'),
(269, 53, '_elementor_pro_version', '3.3.2'),
(270, 53, '_wp_page_template', 'default'),
(271, 53, '_elementor_data', '[{"id":"626d9291","elType":"section","settings":{"gap":"no","custom_height":{"unit":"px","size":150},"content_position":"middle","structure":"33","background_background":"classic","background_color":"#ffffff","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":24,"spread":0,"color":"rgba(0,0,0,0.15)"},"z_index":1,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#d3d3d3","padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"sticky":"top","html_tag":"header"},"elements":[{"id":"6582f694","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":50,"_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1ea1eac1","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]","link":"[elementor-tag id=\\"\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"align_tablet":"left","align_mobile":"left","width":{"unit":"px","size":120},"width_mobile":{"unit":"px","size":80},"image":{"id":10,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/placeholder.png"}},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false},{"id":"7ea612f7","elType":"column","settings":{"_column_size":50,"_inline_size":57.281,"_inline_size_mobile":50,"_inline_size_tablet":40,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3fc4e07","elType":"widget","settings":{"align_items":"center","animation_line":"slide","animation_text":"none","color_menu_item":"#54595f","color_menu_item_hover":"#39c7ce","pointer_color_menu_item_hover":"#39c7ce","menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":15},"pointer_width":{"unit":"px","size":3},"color_dropdown_item":"#000000","background_color_dropdown_item":"#f2f2f2","color_dropdown_item_hover":"#39c7ce","background_color_dropdown_item_hover":"#ededed","dropdown_typography_typography":"custom","dropdown_typography_font_size":{"unit":"px","size":15},"toggle_color":"#000000","toggle_color_hover":"#39c7ce","toggle_size":{"unit":"px","size":30},"toggle_border_width":{"unit":"px","size":0},"toggle_border_radius":{"unit":"px","size":0},"menu_typography_text_transform":"uppercase","menu_typography_font_size_tablet":{"unit":"px","size":13},"menu_space_between":{"unit":"px","size":6},"menu_space_between_tablet":{"unit":"px","size":0},"menu_typography_font_weight":"400","padding_vertical_menu_item":{"unit":"px","size":36},"full_width":"stretch","toggle_align":"right","dropdown_top_distance_mobile":{"unit":"px","size":31},"toggle_background_color":"rgba(0,0,0,0)","menu":"stylo-menu","layout":"dropdown","menu_typography_font_family":"Barlow Condensed"},"elements":[],"widgetType":"nav-menu"}],"isInner":false},{"id":"40940c28","elType":"column","settings":{"_column_size":25,"_inline_size":17.719,"_inline_size_mobile":100,"_inline_size_tablet":30},"elements":[{"id":"26e5abc3","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-twitter","_id":"022bbc9"},{"social":"fa fa-behance","_id":"bbe0fd0"},{"social":"fa fa-dribbble","_id":"ba39e7d"},{"social":"fa fa-instagram","_id":"c58d333"}],"shape":"circle","align":"right","icon_size":{"unit":"px","size":13},"icon_padding":{"unit":"em","size":0.9},"icon_spacing":{"unit":"px","size":7},"align_tablet":"right","align_mobile":"center","hide_mobile":"hidden-phone"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]'),
(272, 53, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(273, 53, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(274, 53, '_elementor_css', 'a:6:{s:4:"time";i:1635845836;s:5:"fonts";a:0:{}s:5:"icons";a:2:{i:0;s:8:"fa-solid";i:1;s:9:"fa-brands";}s:20:"dynamic_elements_ids";a:2:{i:0;s:8:"1ea1eac1";i:1;s:8:"1ea1eac1";}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(276, 54, '_elementor_edit_mode', 'builder'),
(277, 54, '_elementor_template_type', 'header'),
(278, 54, '_elementor_version', '3.3.0'),
(279, 54, '_elementor_pro_version', '3.3.2'),
(280, 54, '_wp_page_template', 'default'),
(281, 54, '_elementor_data', '[{"id":"626d9291","elType":"section","settings":{"gap":"no","custom_height":{"unit":"px","size":150},"content_position":"middle","structure":"33","background_background":"classic","background_color":"#ffffff","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":24,"spread":0,"color":"rgba(0,0,0,0.15)"},"z_index":1,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#d3d3d3","padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"sticky":"top","html_tag":"header"},"elements":[{"id":"6582f694","elType":"column","settings":{"_column_size":25,"_inline_size":null,"_inline_size_mobile":50,"_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1ea1eac1","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]","link":"[elementor-tag id=\\"\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"align_tablet":"left","align_mobile":"left","width":{"unit":"px","size":120},"width_mobile":{"unit":"px","size":80},"image":{"id":10,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/placeholder.png"}},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false},{"id":"7ea612f7","elType":"column","settings":{"_column_size":50,"_inline_size":57.281,"_inline_size_mobile":50,"_inline_size_tablet":40,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3fc4e07","elType":"widget","settings":{"align_items":"center","animation_line":"slide","animation_text":"none","color_menu_item":"#54595f","color_menu_item_hover":"#39c7ce","pointer_color_menu_item_hover":"#39c7ce","menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":15},"pointer_width":{"unit":"px","size":3},"color_dropdown_item":"#000000","background_color_dropdown_item":"#f2f2f2","color_dropdown_item_hover":"#39c7ce","background_color_dropdown_item_hover":"#ededed","dropdown_typography_typography":"custom","dropdown_typography_font_size":{"unit":"px","size":15},"toggle_color":"#000000","toggle_color_hover":"#39c7ce","toggle_size":{"unit":"px","size":30},"toggle_border_width":{"unit":"px","size":0},"toggle_border_radius":{"unit":"px","size":0},"menu_typography_text_transform":"uppercase","menu_typography_font_size_tablet":{"unit":"px","size":13},"menu_space_between":{"unit":"px","size":6},"menu_space_between_tablet":{"unit":"px","size":0},"menu_typography_font_weight":"400","padding_vertical_menu_item":{"unit":"px","size":36},"full_width":"stretch","toggle_align":"right","dropdown_top_distance_mobile":{"unit":"px","size":31},"toggle_background_color":"rgba(0,0,0,0)","menu":"stylo-menu","layout":"dropdown","menu_typography_font_family":"Barlow Condensed"},"elements":[],"widgetType":"nav-menu"}],"isInner":false},{"id":"40940c28","elType":"column","settings":{"_column_size":25,"_inline_size":17.719,"_inline_size_mobile":100,"_inline_size_tablet":30},"elements":[{"id":"26e5abc3","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-instagram","_id":"c58d333","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"https:\\/\\/www.instagram.com\\/stylo.mode\\/","is_external":"true","nofollow":"","custom_attributes":""},"__fa4_migrated":{"social_icon":true}}],"shape":"circle","align":"right","icon_size":{"unit":"px","size":13},"icon_padding":{"unit":"em","size":0.9},"icon_spacing":{"unit":"px","size":7},"align_tablet":"right","align_mobile":"center","hide_mobile":"hidden-phone"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]'),
(282, 54, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(283, 54, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(285, 55, '_elementor_edit_mode', 'builder'),
(286, 55, '_elementor_template_type', 'header'),
(287, 55, '_elementor_version', '3.3.0'),
(288, 55, '_elementor_pro_version', '3.3.2'),
(289, 55, '_wp_page_template', 'default'),
(290, 55, '_elementor_data', '[{"id":"626d9291","elType":"section","settings":{"gap":"no","custom_height":{"unit":"px","size":150},"content_position":"middle","structure":"33","background_background":"classic","background_color":"#ffffff","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":24,"spread":0,"color":"rgba(0,0,0,0.15)"},"z_index":1,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#d3d3d3","padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"sticky":"top","html_tag":"header"},"elements":[{"id":"6582f694","elType":"column","settings":{"_column_size":25,"_inline_size":19.737,"_inline_size_mobile":50,"_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1ea1eac1","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]","link":"[elementor-tag id=\\"\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"align_tablet":"left","align_mobile":"left","width":{"unit":"px","size":120},"width_mobile":{"unit":"px","size":80},"image":{"id":10,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/placeholder.png"}},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false},{"id":"7ea612f7","elType":"column","settings":{"_column_size":50,"_inline_size":75.789,"_inline_size_mobile":50,"_inline_size_tablet":40,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3fc4e07","elType":"widget","settings":{"align_items":"center","animation_line":"slide","animation_text":"none","color_menu_item":"#54595f","color_menu_item_hover":"#39c7ce","pointer_color_menu_item_hover":"#39c7ce","menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":15},"pointer_width":{"unit":"px","size":3},"color_dropdown_item":"#000000","background_color_dropdown_item":"#f2f2f2","color_dropdown_item_hover":"#39c7ce","background_color_dropdown_item_hover":"#ededed","dropdown_typography_typography":"custom","dropdown_typography_font_size":{"unit":"px","size":15},"toggle_color":"#000000","toggle_color_hover":"#39c7ce","toggle_size":{"unit":"px","size":30},"toggle_border_width":{"unit":"px","size":0},"toggle_border_radius":{"unit":"px","size":0},"menu_typography_text_transform":"uppercase","menu_typography_font_size_tablet":{"unit":"px","size":13},"menu_space_between":{"unit":"px","size":6},"menu_space_between_tablet":{"unit":"px","size":0},"menu_typography_font_weight":"400","padding_vertical_menu_item":{"unit":"px","size":36},"full_width":"stretch","toggle_align":"right","dropdown_top_distance_mobile":{"unit":"px","size":31},"toggle_background_color":"rgba(0,0,0,0)","menu":"stylo-menu","layout":"dropdown","menu_typography_font_family":"Barlow Condensed"},"elements":[],"widgetType":"nav-menu"}],"isInner":false},{"id":"40940c28","elType":"column","settings":{"_column_size":25,"_inline_size":4.474,"_inline_size_mobile":100,"_inline_size_tablet":30},"elements":[{"id":"26e5abc3","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-instagram","_id":"c58d333","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"https:\\/\\/www.instagram.com\\/stylo.mode\\/","is_external":"true","nofollow":"","custom_attributes":""},"__fa4_migrated":{"social_icon":true}}],"shape":"circle","align":"right","icon_size":{"unit":"px","size":13},"icon_padding":{"unit":"em","size":0.9},"icon_spacing":{"unit":"px","size":7},"align_tablet":"right","align_mobile":"center","hide_mobile":"hidden-phone"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]'),
(291, 55, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(292, 55, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(295, 56, '_elementor_edit_mode', 'builder'),
(296, 56, '_elementor_template_type', 'wp-page'),
(297, 56, '_elementor_version', '3.3.0'),
(298, 56, '_elementor_pro_version', '3.3.2'),
(299, 56, '_wp_page_template', 'default'),
(300, 56, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(301, 56, '_elementor_data', '[{"id":"a19bf2f","elType":"section","settings":[],"elements":[{"id":"888bb3f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"087cc64","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(302, 56, '_elementor_page_assets', 'a:0:{}'),
(303, 56, '_elementor_css', 'a:6:{s:4:"time";i:1635846890;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(304, 57, '_elementor_edit_mode', 'builder'),
(305, 57, '_elementor_template_type', 'wp-page'),
(306, 57, '_elementor_version', '3.3.0'),
(307, 57, '_elementor_pro_version', '3.3.2'),
(308, 57, '_wp_page_template', 'default'),
(309, 57, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(310, 57, '_elementor_data', '[{"id":"a19bf2f","elType":"section","settings":[],"elements":[{"id":"888bb3f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"087cc64","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(311, 57, '_elementor_page_assets', 'a:0:{}'),
(312, 57, '_elementor_css', 'a:6:{s:4:"time";i:1635846890;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(313, 58, '_elementor_edit_mode', 'builder'),
(314, 58, '_elementor_template_type', 'wp-page'),
(315, 58, '_elementor_version', '3.3.0'),
(316, 58, '_elementor_pro_version', '3.3.2'),
(317, 58, '_wp_page_template', 'default'),
(318, 58, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(319, 58, '_elementor_data', '[{"id":"a19bf2f","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"888bb3f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"087cc64","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"2048x2048"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(320, 58, '_elementor_page_assets', 'a:0:{}'),
(321, 58, '_elementor_css', 'a:6:{s:4:"time";i:1635846890;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(323, 59, '_elementor_edit_mode', 'builder'),
(324, 59, '_elementor_template_type', 'wp-page'),
(325, 59, '_elementor_version', '3.3.0'),
(326, 59, '_elementor_pro_version', '3.3.2'),
(327, 59, '_wp_page_template', 'default'),
(328, 59, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(329, 59, '_elementor_data', '[{"id":"a19bf2f","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"888bb3f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"087cc64","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"2048x2048"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(330, 59, '_elementor_page_assets', 'a:0:{}'),
(331, 60, '_elementor_edit_mode', 'builder'),
(332, 60, '_elementor_template_type', 'wp-page'),
(333, 60, '_elementor_version', '3.3.0'),
(334, 60, '_elementor_pro_version', '3.3.2'),
(335, 60, '_wp_page_template', 'default'),
(336, 60, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(337, 60, '_elementor_data', '[{"id":"a19bf2f","elType":"section","settings":{"layout":"full_width"},"elements":[{"id":"888bb3f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"087cc64","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"2048x2048"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(338, 60, '_elementor_page_assets', 'a:0:{}'),
(339, 61, '_elementor_edit_mode', 'builder'),
(340, 61, '_elementor_template_type', 'wp-page'),
(341, 61, '_elementor_version', '3.3.0'),
(342, 61, '_elementor_pro_version', '3.3.2'),
(343, 61, '_wp_page_template', 'default'),
(344, 61, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(345, 61, '_elementor_data', '[{"id":"a19bf2f","elType":"section","settings":{"layout":"full_width","gap":"no","margin":{"unit":"px","top":"-92","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"888bb3f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"087cc64","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"2048x2048","width":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(346, 61, '_elementor_page_assets', 'a:0:{}'),
(348, 62, '_elementor_edit_mode', 'builder'),
(349, 62, '_elementor_template_type', 'header'),
(350, 62, '_elementor_version', '3.3.0'),
(351, 62, '_elementor_pro_version', '3.3.2'),
(352, 62, '_wp_page_template', 'default'),
(353, 62, '_elementor_data', '[{"id":"626d9291","elType":"section","settings":{"gap":"no","custom_height":{"unit":"px","size":150},"content_position":"middle","structure":"33","background_background":"classic","background_color":"#FFFFFF00","margin":{"unit":"px","top":"","right":0,"bottom":"","left":0,"isLinked":true},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":24,"spread":0,"color":"rgba(0,0,0,0.15)"},"z_index":1,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#d3d3d3","padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"sticky":"top","html_tag":"header"},"elements":[{"id":"6582f694","elType":"column","settings":{"_column_size":25,"_inline_size":19.737,"_inline_size_mobile":50,"_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1ea1eac1","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]","link":"[elementor-tag id=\\"\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"align_tablet":"left","align_mobile":"left","width":{"unit":"px","size":120},"width_mobile":{"unit":"px","size":80},"image":{"id":10,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/placeholder.png"}},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false},{"id":"7ea612f7","elType":"column","settings":{"_column_size":50,"_inline_size":75.789,"_inline_size_mobile":50,"_inline_size_tablet":40,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3fc4e07","elType":"widget","settings":{"align_items":"center","animation_line":"slide","animation_text":"none","color_menu_item":"#54595f","color_menu_item_hover":"#39c7ce","pointer_color_menu_item_hover":"#39c7ce","menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":15},"pointer_width":{"unit":"px","size":3},"color_dropdown_item":"#000000","background_color_dropdown_item":"#f2f2f2","color_dropdown_item_hover":"#39c7ce","background_color_dropdown_item_hover":"#ededed","dropdown_typography_typography":"custom","dropdown_typography_font_size":{"unit":"px","size":15},"toggle_color":"#000000","toggle_color_hover":"#39c7ce","toggle_size":{"unit":"px","size":30},"toggle_border_width":{"unit":"px","size":0},"toggle_border_radius":{"unit":"px","size":0},"menu_typography_text_transform":"uppercase","menu_typography_font_size_tablet":{"unit":"px","size":13},"menu_space_between":{"unit":"px","size":6},"menu_space_between_tablet":{"unit":"px","size":0},"menu_typography_font_weight":"400","padding_vertical_menu_item":{"unit":"px","size":36},"full_width":"stretch","toggle_align":"right","dropdown_top_distance_mobile":{"unit":"px","size":31},"toggle_background_color":"rgba(0,0,0,0)","menu":"stylo-menu","layout":"dropdown","menu_typography_font_family":"Barlow Condensed"},"elements":[],"widgetType":"nav-menu"}],"isInner":false},{"id":"40940c28","elType":"column","settings":{"_column_size":25,"_inline_size":4.474,"_inline_size_mobile":100,"_inline_size_tablet":30},"elements":[{"id":"26e5abc3","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-instagram","_id":"c58d333","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"https:\\/\\/www.instagram.com\\/stylo.mode\\/","is_external":"true","nofollow":"","custom_attributes":""},"__fa4_migrated":{"social_icon":true}}],"shape":"circle","align":"right","icon_size":{"unit":"px","size":13},"icon_padding":{"unit":"em","size":0.9},"icon_spacing":{"unit":"px","size":7},"align_tablet":"right","align_mobile":"center","hide_mobile":"hidden-phone"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]');
INSERT INTO `wpui_postmeta` VALUES
(354, 62, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(355, 62, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(356, 62, '_elementor_css', 'a:6:{s:4:"time";i:1635847044;s:5:"fonts";a:0:{}s:5:"icons";a:2:{i:0;s:8:"fa-solid";i:1;s:9:"fa-brands";}s:20:"dynamic_elements_ids";a:2:{i:0;s:8:"1ea1eac1";i:1;s:8:"1ea1eac1";}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(358, 63, '_elementor_edit_mode', 'builder'),
(359, 63, '_elementor_template_type', 'header'),
(360, 63, '_elementor_version', '3.3.0'),
(361, 63, '_elementor_pro_version', '3.3.2'),
(362, 63, '_wp_page_template', 'default'),
(363, 63, '_elementor_data', '[{"id":"626d9291","elType":"section","settings":{"gap":"no","custom_height":{"unit":"px","size":150},"content_position":"middle","structure":"33","background_background":"classic","background_color":"#FFFFFF00","margin":{"unit":"px","top":"24","right":0,"bottom":"13","left":0,"isLinked":false},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":24,"spread":0,"color":"rgba(0,0,0,0.15)"},"z_index":1,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#d3d3d3","padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"sticky":"top","html_tag":"header"},"elements":[{"id":"6582f694","elType":"column","settings":{"_column_size":25,"_inline_size":19.737,"_inline_size_mobile":50,"_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1ea1eac1","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]","link":"[elementor-tag id=\\"\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"align_tablet":"left","align_mobile":"left","width":{"unit":"px","size":120},"width_mobile":{"unit":"px","size":80},"image":{"id":10,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/placeholder.png"}},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false},{"id":"7ea612f7","elType":"column","settings":{"_column_size":50,"_inline_size":75.789,"_inline_size_mobile":50,"_inline_size_tablet":40,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3fc4e07","elType":"widget","settings":{"align_items":"center","animation_line":"slide","animation_text":"none","color_menu_item":"#54595f","color_menu_item_hover":"#39c7ce","pointer_color_menu_item_hover":"#39c7ce","menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":15},"pointer_width":{"unit":"px","size":3},"color_dropdown_item":"#000000","background_color_dropdown_item":"#f2f2f2","color_dropdown_item_hover":"#39c7ce","background_color_dropdown_item_hover":"#ededed","dropdown_typography_typography":"custom","dropdown_typography_font_size":{"unit":"px","size":15},"toggle_color":"#000000","toggle_color_hover":"#39c7ce","toggle_size":{"unit":"px","size":30},"toggle_border_width":{"unit":"px","size":0},"toggle_border_radius":{"unit":"px","size":0},"menu_typography_text_transform":"uppercase","menu_typography_font_size_tablet":{"unit":"px","size":13},"menu_space_between":{"unit":"px","size":6},"menu_space_between_tablet":{"unit":"px","size":0},"menu_typography_font_weight":"400","padding_vertical_menu_item":{"unit":"px","size":36},"full_width":"stretch","toggle_align":"right","dropdown_top_distance_mobile":{"unit":"px","size":31},"toggle_background_color":"rgba(0,0,0,0)","menu":"stylo-menu","layout":"dropdown","menu_typography_font_family":"Barlow Condensed"},"elements":[],"widgetType":"nav-menu"}],"isInner":false},{"id":"40940c28","elType":"column","settings":{"_column_size":25,"_inline_size":4.474,"_inline_size_mobile":100,"_inline_size_tablet":30},"elements":[{"id":"26e5abc3","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-instagram","_id":"c58d333","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"https:\\/\\/www.instagram.com\\/stylo.mode\\/","is_external":"true","nofollow":"","custom_attributes":""},"__fa4_migrated":{"social_icon":true}}],"shape":"circle","align":"right","icon_size":{"unit":"px","size":13},"icon_padding":{"unit":"em","size":0.9},"icon_spacing":{"unit":"px","size":7},"align_tablet":"right","align_mobile":"center","hide_mobile":"hidden-phone"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]'),
(364, 63, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(365, 63, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(369, 64, '_elementor_edit_mode', 'builder'),
(370, 64, '_elementor_template_type', 'wp-page'),
(371, 64, '_elementor_version', '3.3.0'),
(372, 64, '_elementor_pro_version', '3.3.2'),
(373, 64, '_wp_page_template', 'default'),
(374, 64, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(375, 64, '_elementor_data', '[{"id":"a19bf2f","elType":"section","settings":{"layout":"full_width","gap":"no","margin":{"unit":"px","top":"-92","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"888bb3f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"087cc64","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"2048x2048","width":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(376, 64, '_elementor_page_assets', 'a:0:{}'),
(377, 64, '_elementor_css', 'a:6:{s:4:"time";i:1635847223;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(378, 65, '_elementor_edit_mode', 'builder'),
(379, 65, '_elementor_template_type', 'wp-page'),
(380, 65, '_elementor_version', '3.3.0'),
(381, 65, '_elementor_pro_version', '3.3.2'),
(382, 65, '_wp_page_template', 'default'),
(383, 65, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(384, 65, '_elementor_data', '[{"id":"a19bf2f","elType":"section","settings":{"layout":"full_width","gap":"no","margin":{"unit":"px","top":"-92","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"888bb3f","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"087cc64","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"2048x2048","width":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(385, 65, '_elementor_page_assets', 'a:0:{}'),
(386, 65, '_elementor_css', 'a:6:{s:4:"time";i:1635847223;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(387, 66, '_elementor_edit_mode', 'builder'),
(388, 66, '_elementor_template_type', 'wp-page'),
(389, 66, '_elementor_version', '3.3.0'),
(390, 66, '_elementor_pro_version', '3.3.2'),
(391, 66, '_wp_page_template', 'default'),
(392, 66, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(393, 66, '_elementor_data', '[{"id":"a19bf2f","elType":"section","settings":{"layout":"full_width","gap":"no","margin":{"unit":"px","top":"-92","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"888bb3f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"79","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"087cc64","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"2048x2048","width":{"unit":"%","size":100,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(394, 66, '_elementor_page_assets', 'a:0:{}'),
(395, 66, '_elementor_css', 'a:6:{s:4:"time";i:1635847223;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(397, 67, '_elementor_edit_mode', 'builder'),
(398, 67, '_elementor_template_type', 'wp-page'),
(399, 67, '_elementor_version', '3.3.0'),
(400, 67, '_elementor_pro_version', '3.3.2'),
(401, 67, '_wp_page_template', 'default'),
(402, 67, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(403, 67, '_elementor_data', '[{"id":"a19bf2f","elType":"section","settings":{"layout":"full_width","gap":"no","margin":{"unit":"px","top":"-92","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"888bb3f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"79","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"087cc64","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"2048x2048","width":{"unit":"%","size":100,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(404, 67, '_elementor_page_assets', 'a:0:{}'),
(405, 68, '_elementor_edit_mode', 'builder'),
(406, 68, '_elementor_template_type', 'wp-page'),
(407, 68, '_elementor_version', '3.3.0'),
(408, 68, '_elementor_pro_version', '3.3.2'),
(409, 68, '_wp_page_template', 'default'),
(410, 68, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(411, 68, '_elementor_data', '[{"id":"a19bf2f","elType":"section","settings":{"layout":"full_width","gap":"no","margin":{"unit":"px","top":"-92","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"888bb3f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"79","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"087cc64","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"2048x2048","width":{"unit":"%","size":100,"sizes":[]},"_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(412, 68, '_elementor_page_assets', 'a:0:{}'),
(413, 69, '_elementor_edit_mode', 'builder'),
(414, 69, '_elementor_template_type', 'wp-page'),
(415, 69, '_elementor_version', '3.3.0'),
(416, 69, '_elementor_pro_version', '3.3.2'),
(417, 69, '_wp_page_template', 'default'),
(418, 69, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(419, 69, '_elementor_data', '[{"id":"a19bf2f","elType":"section","settings":{"layout":"full_width","gap":"no","margin":{"unit":"px","top":"-92","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"888bb3f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"0455794","elType":"widget","settings":[],"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(420, 69, '_elementor_page_assets', 'a:0:{}'),
(433, 71, '_wp_attached_file', '2021/11/simbolo01.png'),
(434, 71, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:1015;s:4:"file";s:21:"2021/11/simbolo01.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:21:"simbolo01-236x300.png";s:5:"width";i:236;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"simbolo01-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:21:"simbolo01-768x974.png";s:5:"width";i:768;s:6:"height";i:974;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(435, 72, '_wp_attached_file', '2021/11/modeloimagen.jpg'),
(436, 72, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1600;s:6:"height";i:1020;s:4:"file";s:24:"2021/11/modeloimagen.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:24:"modeloimagen-300x191.jpg";s:5:"width";i:300;s:6:"height";i:191;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"modeloimagen-1024x653.jpg";s:5:"width";i:1024;s:6:"height";i:653;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:24:"modeloimagen-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"modeloimagen-768x490.jpg";s:5:"width";i:768;s:6:"height";i:490;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:25:"modeloimagen-1536x979.jpg";s:5:"width";i:1536;s:6:"height";i:979;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(437, 73, '_elementor_edit_mode', 'builder'),
(438, 73, '_elementor_template_type', 'wp-page'),
(439, 73, '_elementor_version', '3.3.0'),
(440, 73, '_elementor_pro_version', '3.3.2'),
(441, 73, '_wp_page_template', 'default'),
(442, 73, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(443, 73, '_elementor_data', '[{"id":"a19bf2f","elType":"section","settings":{"layout":"full_width","gap":"no","margin":{"unit":"px","top":"-92","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"888bb3f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"0455794","elType":"widget","settings":[],"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(444, 73, '_elementor_page_assets', 'a:0:{}'),
(445, 74, '_elementor_edit_mode', 'builder'),
(446, 74, '_elementor_template_type', 'wp-page'),
(447, 74, '_elementor_version', '3.3.0'),
(448, 74, '_elementor_pro_version', '3.3.2'),
(449, 74, '_wp_page_template', 'default'),
(450, 74, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(451, 74, '_elementor_data', '[{"id":"a19bf2f","elType":"section","settings":{"layout":"full_width","gap":"no","margin":{"unit":"px","top":"-92","right":0,"bottom":"0","left":0,"isLinked":false}},"elements":[{"id":"888bb3f","elType":"column","settings":{"_column_size":100,"_inline_size":null,"margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"padding":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"0455794","elType":"widget","settings":[],"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(452, 74, '_elementor_page_assets', 'a:0:{}'),
(453, 75, '_elementor_edit_mode', 'builder'),
(454, 75, '_elementor_template_type', 'wp-page'),
(455, 75, '_elementor_version', '3.3.0'),
(456, 75, '_elementor_pro_version', '3.3.2'),
(457, 75, '_wp_page_template', 'default'),
(458, 75, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(459, 75, '_elementor_data', '[{"id":"c9f0f68","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"a09ba9c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modeloimagen.jpg","id":72,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(460, 75, '_elementor_page_assets', 'a:0:{}'),
(463, 76, '_elementor_edit_mode', 'builder'),
(464, 76, '_elementor_template_type', 'header'),
(465, 76, '_elementor_version', '3.3.0'),
(466, 76, '_elementor_pro_version', '3.3.2'),
(467, 76, '_wp_page_template', 'default'),
(468, 76, '_elementor_data', '[{"id":"626d9291","elType":"section","settings":{"gap":"no","custom_height":{"unit":"px","size":150},"content_position":"middle","structure":"33","background_background":"classic","background_color":"#FFFFFF00","margin":{"unit":"px","top":"24","right":0,"bottom":"13","left":0,"isLinked":false},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":24,"spread":0,"color":"rgba(0,0,0,0.15)"},"z_index":1,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#d3d3d3","padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"sticky":"top","html_tag":"header"},"elements":[{"id":"6582f694","elType":"column","settings":{"_column_size":25,"_inline_size":19.737,"_inline_size_mobile":50,"_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1ea1eac1","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]","link":"[elementor-tag id=\\"\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"align_tablet":"left","align_mobile":"left","width":{"unit":"px","size":120},"width_mobile":{"unit":"px","size":80},"image":{"id":10,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/placeholder.png"}},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false},{"id":"7ea612f7","elType":"column","settings":{"_column_size":50,"_inline_size":75.789,"_inline_size_mobile":50,"_inline_size_tablet":40,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3fc4e07","elType":"widget","settings":{"align_items":"center","animation_line":"slide","animation_text":"none","color_menu_item":"#54595f","color_menu_item_hover":"#39c7ce","pointer_color_menu_item_hover":"#39c7ce","menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":15},"pointer_width":{"unit":"px","size":3},"color_dropdown_item":"#000000","background_color_dropdown_item":"#f2f2f2","color_dropdown_item_hover":"#39c7ce","background_color_dropdown_item_hover":"#ededed","dropdown_typography_typography":"custom","dropdown_typography_font_size":{"unit":"px","size":15},"toggle_color":"#000000","toggle_color_hover":"#39c7ce","toggle_size":{"unit":"px","size":30},"toggle_border_width":{"unit":"px","size":0},"toggle_border_radius":{"unit":"px","size":0},"menu_typography_text_transform":"uppercase","menu_typography_font_size_tablet":{"unit":"px","size":13},"menu_space_between":{"unit":"px","size":6},"menu_space_between_tablet":{"unit":"px","size":0},"menu_typography_font_weight":"400","padding_vertical_menu_item":{"unit":"px","size":36},"full_width":"stretch","toggle_align":"right","dropdown_top_distance_mobile":{"unit":"px","size":31},"toggle_background_color":"rgba(0,0,0,0)","menu":"stylo-menu","menu_typography_font_family":"Barlow Condensed"},"elements":[],"widgetType":"nav-menu"}],"isInner":false},{"id":"40940c28","elType":"column","settings":{"_column_size":25,"_inline_size":4.474,"_inline_size_mobile":100,"_inline_size_tablet":30},"elements":[{"id":"26e5abc3","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-instagram","_id":"c58d333","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"https:\\/\\/www.instagram.com\\/stylo.mode\\/","is_external":"true","nofollow":"","custom_attributes":""},"__fa4_migrated":{"social_icon":true}}],"shape":"circle","align":"right","icon_size":{"unit":"px","size":13},"icon_padding":{"unit":"em","size":0.9},"icon_spacing":{"unit":"px","size":7},"align_tablet":"right","align_mobile":"center","hide_mobile":"hidden-phone"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]'),
(469, 76, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(470, 76, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(471, 76, '_elementor_css', 'a:6:{s:4:"time";i:1635847218;s:5:"fonts";a:0:{}s:5:"icons";a:2:{i:0;s:8:"fa-solid";i:1;s:9:"fa-brands";}s:20:"dynamic_elements_ids";a:2:{i:0;s:8:"1ea1eac1";i:1;s:8:"1ea1eac1";}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(475, 77, '_elementor_edit_mode', 'builder'),
(476, 77, '_elementor_template_type', 'wp-page'),
(477, 77, '_elementor_version', '3.3.0'),
(478, 77, '_elementor_pro_version', '3.3.2'),
(479, 77, '_wp_page_template', 'default'),
(480, 77, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(481, 77, '_elementor_data', '[{"id":"c9f0f68","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"a09ba9c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modeloimagen.jpg","id":72,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(482, 77, '_elementor_page_assets', 'a:0:{}'),
(483, 77, '_elementor_css', 'a:6:{s:4:"time";i:1635848094;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(484, 78, '_elementor_edit_mode', 'builder'),
(485, 78, '_elementor_template_type', 'wp-page'),
(486, 78, '_elementor_version', '3.3.0'),
(487, 78, '_elementor_pro_version', '3.3.2'),
(488, 78, '_wp_page_template', 'default'),
(489, 78, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(490, 78, '_elementor_data', '[{"id":"c9f0f68","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"a09ba9c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modeloimagen.jpg","id":72,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(491, 78, '_elementor_page_assets', 'a:0:{}'),
(492, 78, '_elementor_css', 'a:6:{s:4:"time";i:1635848094;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(493, 79, '_elementor_edit_mode', 'builder'),
(494, 79, '_elementor_template_type', 'wp-page'),
(495, 79, '_elementor_version', '3.3.0'),
(496, 79, '_elementor_pro_version', '3.3.2'),
(497, 79, '_wp_page_template', 'default'),
(498, 79, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(499, 79, '_elementor_data', '[{"id":"c9f0f68","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"a09ba9c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modeloimagen.jpg","id":72,"alt":"","source":"library"},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(500, 79, '_elementor_page_assets', 'a:0:{}'),
(501, 79, '_elementor_css', 'a:6:{s:4:"time";i:1635848094;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(503, 80, '_elementor_edit_mode', 'builder'),
(504, 80, '_elementor_template_type', 'wp-page'),
(505, 80, '_elementor_version', '3.3.0'),
(506, 80, '_elementor_pro_version', '3.3.2'),
(507, 80, '_wp_page_template', 'default'),
(508, 80, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(509, 80, '_elementor_data', '[{"id":"c9f0f68","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"a09ba9c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modeloimagen.jpg","id":72,"alt":"","source":"library"},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(510, 80, '_elementor_page_assets', 'a:0:{}'),
(511, 81, '_elementor_edit_mode', 'builder'),
(512, 81, '_elementor_template_type', 'wp-page'),
(513, 81, '_elementor_version', '3.3.0'),
(514, 81, '_elementor_pro_version', '3.3.2'),
(515, 81, '_wp_page_template', 'default'),
(516, 81, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(517, 81, '_elementor_data', '[{"id":"c9f0f68","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"a09ba9c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modeloimagen.jpg","id":72,"alt":"","source":"library"},"image_size":"full"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(518, 81, '_elementor_page_assets', 'a:0:{}'),
(519, 82, '_elementor_edit_mode', 'builder'),
(520, 82, '_elementor_template_type', 'wp-page'),
(521, 82, '_elementor_version', '3.3.0'),
(522, 82, '_elementor_pro_version', '3.3.2'),
(523, 82, '_wp_page_template', 'default'),
(524, 82, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(525, 82, '_elementor_data', '[{"id":"c9f0f68","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"a09ba9c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modeloimagen.jpg","id":72,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(526, 82, '_elementor_page_assets', 'a:0:{}'),
(529, 83, '_wp_attached_file', '2021/11/seaweed-seamless-vector-pattern-underwater-600w-1967583085.webp'),
(530, 83, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:620;s:4:"file";s:71:"2021/11/seaweed-seamless-vector-pattern-underwater-600w-1967583085.webp";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:71:"seaweed-seamless-vector-pattern-underwater-600w-1967583085-290x300.webp";s:5:"width";i:290;s:6:"height";i:300;s:9:"mime-type";s:10:"image/webp";}s:9:"thumbnail";a:4:{s:4:"file";s:71:"seaweed-seamless-vector-pattern-underwater-600w-1967583085-150x150.webp";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/webp";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(541, 85, '_wp_attached_file', '2021/11/fondo.jpg'),
(542, 85, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1000;s:6:"height";i:1000;s:4:"file";s:17:"2021/11/fondo.jpg";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:17:"fondo-300x300.jpg";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"fondo-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"fondo-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(543, 86, '_elementor_edit_mode', 'builder'),
(544, 86, '_elementor_template_type', 'wp-page'),
(545, 86, '_elementor_version', '3.3.0'),
(546, 86, '_elementor_pro_version', '3.3.2'),
(547, 86, '_wp_page_template', 'default'),
(548, 86, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(549, 86, '_elementor_data', '[{"id":"c9f0f68","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"a09ba9c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modeloimagen.jpg","id":72,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(550, 86, '_elementor_page_assets', 'a:0:{}'),
(551, 87, '_elementor_edit_mode', 'builder'),
(552, 87, '_elementor_template_type', 'wp-page'),
(553, 87, '_elementor_version', '3.3.0'),
(554, 87, '_elementor_pro_version', '3.3.2'),
(555, 87, '_wp_page_template', 'default'),
(556, 87, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(557, 87, '_elementor_data', '[{"id":"c9f0f68","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"a09ba9c","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modeloimagen.jpg","id":72,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(558, 87, '_elementor_page_assets', 'a:0:{}'),
(559, 88, '_elementor_edit_mode', 'builder'),
(560, 88, '_elementor_template_type', 'wp-page'),
(561, 88, '_elementor_version', '3.3.0'),
(562, 88, '_elementor_pro_version', '3.3.2'),
(563, 88, '_wp_page_template', 'default'),
(564, 88, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(565, 88, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo.jpg","id":85,"alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":0.11,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"c18a550","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/simbolo01.png","id":71,"alt":"","source":"library"},"width":{"unit":"%","size":48,"sizes":[]},"_margin":{"unit":"px","top":"120","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(566, 88, '_elementor_page_assets', 'a:0:{}'),
(568, 89, '_wp_attached_file', '2021/11/tit2.png'),
(569, 89, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1600;s:6:"height";i:1025;s:4:"file";s:16:"2021/11/tit2.png";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:16:"tit2-300x192.png";s:5:"width";i:300;s:6:"height";i:192;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:17:"tit2-1024x656.png";s:5:"width";i:1024;s:6:"height";i:656;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:16:"tit2-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:16:"tit2-768x492.png";s:5:"width";i:768;s:6:"height";i:492;s:9:"mime-type";s:9:"image/png";}s:9:"1536x1536";a:4:{s:4:"file";s:17:"tit2-1536x984.png";s:5:"width";i:1536;s:6:"height";i:984;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(570, 90, '_elementor_edit_mode', 'builder'),
(571, 90, '_elementor_template_type', 'wp-page'),
(572, 90, '_elementor_version', '3.3.0'),
(573, 90, '_elementor_pro_version', '3.3.2'),
(574, 90, '_wp_page_template', 'default'),
(575, 90, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(576, 90, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo.jpg","id":85,"alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":0.11,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"c18a550","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/simbolo01.png","id":71,"alt":"","source":"library"},"width":{"unit":"%","size":48,"sizes":[]},"_margin":{"unit":"px","top":"120","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(577, 90, '_elementor_page_assets', 'a:0:{}'),
(578, 91, '_elementor_edit_mode', 'builder'),
(579, 91, '_elementor_template_type', 'wp-page'),
(580, 91, '_elementor_version', '3.3.0'),
(581, 91, '_elementor_pro_version', '3.3.2'),
(582, 91, '_wp_page_template', 'default'),
(583, 91, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(584, 91, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo.jpg","id":85,"alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":0.11,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"c18a550","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/simbolo01.png","id":71,"alt":"","source":"library"},"width":{"unit":"%","size":48,"sizes":[]},"_margin":{"unit":"px","top":"120","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(585, 91, '_elementor_page_assets', 'a:0:{}'),
(586, 92, '_elementor_edit_mode', 'builder'),
(587, 92, '_elementor_template_type', 'wp-page'),
(588, 92, '_elementor_version', '3.3.0'),
(589, 92, '_elementor_pro_version', '3.3.2'),
(590, 92, '_wp_page_template', 'default'),
(591, 92, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(592, 92, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo.jpg","id":85,"alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":0.11,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"5becc15","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit2.png","id":89,"alt":"","source":"library"},"_margin":{"unit":"px","top":"80","right":"80","bottom":"80","left":"80","isLinked":true},"_padding":{"unit":"px","top":"64","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(593, 92, '_elementor_page_assets', 'a:0:{}'),
(596, 93, '_wp_attached_file', '2021/11/Recurso-8.png'),
(597, 93, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:463;s:4:"file";s:21:"2021/11/Recurso-8.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:21:"Recurso-8-300x174.png";s:5:"width";i:300;s:6:"height";i:174;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"Recurso-8-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:21:"Recurso-8-768x444.png";s:5:"width";i:768;s:6:"height";i:444;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(598, 94, '_elementor_edit_mode', 'builder'),
(599, 94, '_elementor_template_type', 'wp-page'),
(600, 94, '_elementor_version', '3.3.0'),
(601, 94, '_elementor_pro_version', '3.3.2'),
(602, 94, '_wp_page_template', 'default'),
(603, 94, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(604, 94, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo.jpg","id":85,"alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":0.11,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"5becc15","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit2.png","id":89,"alt":"","source":"library"},"_margin":{"unit":"px","top":"80","right":"80","bottom":"80","left":"80","isLinked":true},"_padding":{"unit":"px","top":"64","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(605, 94, '_elementor_page_assets', 'a:0:{}'),
(606, 94, '_elementor_css', 'a:6:{s:4:"time";i:1635856634;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(607, 95, '_elementor_edit_mode', 'builder'),
(608, 95, '_elementor_template_type', 'wp-page'),
(609, 95, '_elementor_version', '3.3.0'),
(610, 95, '_elementor_pro_version', '3.3.2'),
(611, 95, '_wp_page_template', 'default'),
(612, 95, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(613, 95, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo.jpg","id":85,"alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":0.11,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"5becc15","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit2.png","id":89,"alt":"","source":"library"},"_margin":{"unit":"px","top":"80","right":"80","bottom":"80","left":"80","isLinked":true},"_padding":{"unit":"px","top":"64","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(614, 95, '_elementor_page_assets', 'a:0:{}'),
(615, 95, '_elementor_css', 'a:6:{s:4:"time";i:1635856634;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(616, 96, '_elementor_edit_mode', 'builder'),
(617, 96, '_elementor_template_type', 'wp-page'),
(618, 96, '_elementor_version', '3.3.0'),
(619, 96, '_elementor_pro_version', '3.3.2'),
(620, 96, '_wp_page_template', 'default'),
(621, 96, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(622, 96, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"109","right":"109","bottom":"109","left":"109","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"5becc15","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit2.png","id":89,"alt":"","source":"library"},"_margin":{"unit":"px","top":"80","right":"80","bottom":"80","left":"80","isLinked":true},"_padding":{"unit":"px","top":"64","right":"0","bottom":"0","left":"0","isLinked":false},"_background_background":"classic"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(623, 96, '_elementor_page_assets', 'a:0:{}'),
(624, 96, '_elementor_css', 'a:6:{s:4:"time";i:1635856634;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(627, 97, '_elementor_edit_mode', 'builder'),
(628, 97, '_elementor_template_type', 'header'),
(629, 97, '_elementor_version', '3.3.0'),
(630, 97, '_elementor_pro_version', '3.3.2'),
(631, 97, '_wp_page_template', 'default'),
(632, 97, '_elementor_data', '[{"id":"626d9291","elType":"section","settings":{"gap":"no","custom_height":{"unit":"px","size":150},"content_position":"middle","structure":"33","background_background":"classic","background_color":"#FFFFFF87","margin":{"unit":"px","top":"24","right":0,"bottom":"13","left":0,"isLinked":false},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":24,"spread":0,"color":"rgba(0,0,0,0.15)"},"z_index":1,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#d3d3d3","padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"sticky":"top","html_tag":"header"},"elements":[{"id":"6582f694","elType":"column","settings":{"_column_size":25,"_inline_size":19.737,"_inline_size_mobile":50,"_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1ea1eac1","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]","link":"[elementor-tag id=\\"\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"align_tablet":"left","align_mobile":"left","width":{"unit":"px","size":120},"width_mobile":{"unit":"px","size":80},"image":{"id":10,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/placeholder.png"}},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false},{"id":"7ea612f7","elType":"column","settings":{"_column_size":50,"_inline_size":75.789,"_inline_size_mobile":50,"_inline_size_tablet":40,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3fc4e07","elType":"widget","settings":{"align_items":"center","animation_line":"slide","animation_text":"none","color_menu_item":"#54595f","color_menu_item_hover":"#39c7ce","pointer_color_menu_item_hover":"#39c7ce","menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":15},"pointer_width":{"unit":"px","size":3},"color_dropdown_item":"#000000","background_color_dropdown_item":"#f2f2f2","color_dropdown_item_hover":"#39c7ce","background_color_dropdown_item_hover":"#ededed","dropdown_typography_typography":"custom","dropdown_typography_font_size":{"unit":"px","size":15},"toggle_color":"#000000","toggle_color_hover":"#39c7ce","toggle_size":{"unit":"px","size":30},"toggle_border_width":{"unit":"px","size":0},"toggle_border_radius":{"unit":"px","size":0},"menu_typography_text_transform":"uppercase","menu_typography_font_size_tablet":{"unit":"px","size":13},"menu_space_between":{"unit":"px","size":6},"menu_space_between_tablet":{"unit":"px","size":0},"menu_typography_font_weight":"400","padding_vertical_menu_item":{"unit":"px","size":36},"full_width":"stretch","toggle_align":"right","dropdown_top_distance_mobile":{"unit":"px","size":31},"toggle_background_color":"rgba(0,0,0,0)","menu":"stylo-menu","menu_typography_font_family":"Barlow Condensed"},"elements":[],"widgetType":"nav-menu"}],"isInner":false},{"id":"40940c28","elType":"column","settings":{"_column_size":25,"_inline_size":4.474,"_inline_size_mobile":100,"_inline_size_tablet":30},"elements":[{"id":"26e5abc3","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-instagram","_id":"c58d333","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"https:\\/\\/www.instagram.com\\/stylo.mode\\/","is_external":"true","nofollow":"","custom_attributes":""},"__fa4_migrated":{"social_icon":true}}],"shape":"circle","align":"right","icon_size":{"unit":"px","size":13},"icon_padding":{"unit":"em","size":0.9},"icon_spacing":{"unit":"px","size":7},"align_tablet":"right","align_mobile":"center","hide_mobile":"hidden-phone"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]'),
(633, 97, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(634, 97, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(635, 97, '_elementor_css', 'a:6:{s:4:"time";i:1635848910;s:5:"fonts";a:1:{i:0;s:16:"Barlow Condensed";}s:5:"icons";a:2:{i:0;s:8:"fa-solid";i:1;s:9:"fa-brands";}s:20:"dynamic_elements_ids";a:2:{i:0;s:8:"1ea1eac1";i:1;s:8:"1ea1eac1";}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(636, 97, '_elementor_screenshot_failed', '2021-11-02 10:29:18'),
(638, 98, '_elementor_edit_mode', 'builder'),
(639, 98, '_elementor_template_type', 'header'),
(640, 98, '_elementor_version', '3.3.0'),
(641, 98, '_elementor_pro_version', '3.3.2'),
(642, 98, '_wp_page_template', 'default'),
(643, 98, '_elementor_data', '[{"id":"626d9291","elType":"section","settings":{"gap":"no","custom_height":{"unit":"px","size":150},"content_position":"middle","structure":"33","background_background":"classic","background_color":"#FFFFFF87","margin":{"unit":"px","top":"24","right":0,"bottom":"13","left":0,"isLinked":false},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":24,"spread":0,"color":"rgba(0,0,0,0.15)"},"z_index":1,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#d3d3d3","padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"sticky":"top","html_tag":"header","shape_divider_top":"mountains"},"elements":[{"id":"6582f694","elType":"column","settings":{"_column_size":25,"_inline_size":19.737,"_inline_size_mobile":50,"_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1ea1eac1","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]","link":"[elementor-tag id=\\"\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"align_tablet":"left","align_mobile":"left","width":{"unit":"px","size":120},"width_mobile":{"unit":"px","size":80},"image":{"id":10,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/placeholder.png"}},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false},{"id":"7ea612f7","elType":"column","settings":{"_column_size":50,"_inline_size":75.789,"_inline_size_mobile":50,"_inline_size_tablet":40,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3fc4e07","elType":"widget","settings":{"align_items":"center","animation_line":"slide","animation_text":"none","color_menu_item":"#54595f","color_menu_item_hover":"#39c7ce","pointer_color_menu_item_hover":"#39c7ce","menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":15},"pointer_width":{"unit":"px","size":3},"color_dropdown_item":"#000000","background_color_dropdown_item":"#f2f2f2","color_dropdown_item_hover":"#39c7ce","background_color_dropdown_item_hover":"#ededed","dropdown_typography_typography":"custom","dropdown_typography_font_size":{"unit":"px","size":15},"toggle_color":"#000000","toggle_color_hover":"#39c7ce","toggle_size":{"unit":"px","size":30},"toggle_border_width":{"unit":"px","size":0},"toggle_border_radius":{"unit":"px","size":0},"menu_typography_text_transform":"uppercase","menu_typography_font_size_tablet":{"unit":"px","size":13},"menu_space_between":{"unit":"px","size":6},"menu_space_between_tablet":{"unit":"px","size":0},"menu_typography_font_weight":"400","padding_vertical_menu_item":{"unit":"px","size":36},"full_width":"stretch","toggle_align":"right","dropdown_top_distance_mobile":{"unit":"px","size":31},"toggle_background_color":"rgba(0,0,0,0)","menu":"stylo-menu","menu_typography_font_family":"Barlow Condensed"},"elements":[],"widgetType":"nav-menu"}],"isInner":false},{"id":"40940c28","elType":"column","settings":{"_column_size":25,"_inline_size":4.474,"_inline_size_mobile":100,"_inline_size_tablet":30},"elements":[{"id":"26e5abc3","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-instagram","_id":"c58d333","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"https:\\/\\/www.instagram.com\\/stylo.mode\\/","is_external":"true","nofollow":"","custom_attributes":""},"__fa4_migrated":{"social_icon":true}}],"shape":"circle","align":"right","icon_size":{"unit":"px","size":13},"icon_padding":{"unit":"em","size":0.9},"icon_spacing":{"unit":"px","size":7},"align_tablet":"right","align_mobile":"center","hide_mobile":"hidden-phone"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]');
INSERT INTO `wpui_postmeta` VALUES
(644, 98, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(645, 98, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(666, 101, '_elementor_edit_mode', 'builder'),
(667, 101, '_elementor_template_type', 'header'),
(668, 101, '_elementor_version', '3.3.0'),
(669, 101, '_elementor_pro_version', '3.3.2'),
(670, 101, '_wp_page_template', 'default'),
(671, 101, '_elementor_data', '[{"id":"626d9291","elType":"section","settings":{"gap":"no","custom_height":{"unit":"px","size":150},"content_position":"middle","structure":"33","background_background":"classic","background_color":"#FFB10B87","margin":{"unit":"px","top":"24","right":0,"bottom":"13","left":0,"isLinked":false},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":24,"spread":0,"color":"rgba(0,0,0,0.15)"},"z_index":1,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#d3d3d3","padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"sticky":"top","html_tag":"header","shape_divider_top":"mountains"},"elements":[{"id":"6582f694","elType":"column","settings":{"_column_size":25,"_inline_size":19.737,"_inline_size_mobile":50,"_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1ea1eac1","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]","link":"[elementor-tag id=\\"\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"align_tablet":"left","align_mobile":"left","width":{"unit":"px","size":120},"width_mobile":{"unit":"px","size":80},"image":{"id":10,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/placeholder.png"}},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false},{"id":"7ea612f7","elType":"column","settings":{"_column_size":50,"_inline_size":75.789,"_inline_size_mobile":50,"_inline_size_tablet":40,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3fc4e07","elType":"widget","settings":{"align_items":"center","animation_line":"slide","animation_text":"none","color_menu_item":"#54595f","color_menu_item_hover":"#39c7ce","pointer_color_menu_item_hover":"#39c7ce","menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":15},"pointer_width":{"unit":"px","size":3},"color_dropdown_item":"#000000","background_color_dropdown_item":"#f2f2f2","color_dropdown_item_hover":"#39c7ce","background_color_dropdown_item_hover":"#ededed","dropdown_typography_typography":"custom","dropdown_typography_font_size":{"unit":"px","size":15},"toggle_color":"#000000","toggle_color_hover":"#39c7ce","toggle_size":{"unit":"px","size":30},"toggle_border_width":{"unit":"px","size":0},"toggle_border_radius":{"unit":"px","size":0},"menu_typography_text_transform":"uppercase","menu_typography_font_size_tablet":{"unit":"px","size":13},"menu_space_between":{"unit":"px","size":6},"menu_space_between_tablet":{"unit":"px","size":0},"menu_typography_font_weight":"400","padding_vertical_menu_item":{"unit":"px","size":36},"full_width":"stretch","toggle_align":"right","dropdown_top_distance_mobile":{"unit":"px","size":31},"toggle_background_color":"rgba(0,0,0,0)","menu":"stylo-menu","menu_typography_font_family":"Barlow Condensed"},"elements":[],"widgetType":"nav-menu"}],"isInner":false},{"id":"40940c28","elType":"column","settings":{"_column_size":25,"_inline_size":4.474,"_inline_size_mobile":100,"_inline_size_tablet":30},"elements":[{"id":"26e5abc3","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-instagram","_id":"c58d333","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"https:\\/\\/www.instagram.com\\/stylo.mode\\/","is_external":"true","nofollow":"","custom_attributes":""},"__fa4_migrated":{"social_icon":true}}],"shape":"circle","align":"right","icon_size":{"unit":"px","size":13},"icon_padding":{"unit":"em","size":0.9},"icon_spacing":{"unit":"px","size":7},"align_tablet":"right","align_mobile":"center","hide_mobile":"hidden-phone"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]'),
(672, 101, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(673, 101, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(676, 102, '_elementor_edit_mode', 'builder'),
(677, 102, '_elementor_template_type', 'header'),
(678, 102, '_elementor_version', '3.3.0'),
(679, 102, '_elementor_pro_version', '3.3.2'),
(680, 102, '_wp_page_template', 'default'),
(681, 102, '_elementor_data', '[{"id":"626d9291","elType":"section","settings":{"gap":"no","custom_height":{"unit":"px","size":150},"content_position":"middle","structure":"33","background_background":"classic","background_color":"#FFB10B87","margin":{"unit":"px","top":"0","right":0,"bottom":"0","left":0,"isLinked":false},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":24,"spread":0,"color":"rgba(0,0,0,0.15)"},"z_index":1,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#d3d3d3","padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"sticky":"top","html_tag":"header","shape_divider_top":"mountains"},"elements":[{"id":"6582f694","elType":"column","settings":{"_column_size":25,"_inline_size":19.737,"_inline_size_mobile":50,"_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1ea1eac1","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]","link":"[elementor-tag id=\\"\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"align_tablet":"left","align_mobile":"left","width":{"unit":"px","size":120},"width_mobile":{"unit":"px","size":80},"image":{"id":10,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/placeholder.png"}},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false},{"id":"7ea612f7","elType":"column","settings":{"_column_size":50,"_inline_size":75.789,"_inline_size_mobile":50,"_inline_size_tablet":40,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3fc4e07","elType":"widget","settings":{"align_items":"center","animation_line":"slide","animation_text":"none","color_menu_item":"#54595f","color_menu_item_hover":"#39c7ce","pointer_color_menu_item_hover":"#39c7ce","menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":15},"pointer_width":{"unit":"px","size":3},"color_dropdown_item":"#000000","background_color_dropdown_item":"#f2f2f2","color_dropdown_item_hover":"#39c7ce","background_color_dropdown_item_hover":"#ededed","dropdown_typography_typography":"custom","dropdown_typography_font_size":{"unit":"px","size":15},"toggle_color":"#000000","toggle_color_hover":"#39c7ce","toggle_size":{"unit":"px","size":30},"toggle_border_width":{"unit":"px","size":0},"toggle_border_radius":{"unit":"px","size":0},"menu_typography_text_transform":"uppercase","menu_typography_font_size_tablet":{"unit":"px","size":13},"menu_space_between":{"unit":"px","size":6},"menu_space_between_tablet":{"unit":"px","size":0},"menu_typography_font_weight":"400","padding_vertical_menu_item":{"unit":"px","size":36},"full_width":"stretch","toggle_align":"right","dropdown_top_distance_mobile":{"unit":"px","size":31},"toggle_background_color":"rgba(0,0,0,0)","menu":"stylo-menu","menu_typography_font_family":"Barlow Condensed"},"elements":[],"widgetType":"nav-menu"}],"isInner":false},{"id":"40940c28","elType":"column","settings":{"_column_size":25,"_inline_size":4.474,"_inline_size_mobile":100,"_inline_size_tablet":30},"elements":[{"id":"26e5abc3","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-instagram","_id":"c58d333","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"https:\\/\\/www.instagram.com\\/stylo.mode\\/","is_external":"true","nofollow":"","custom_attributes":""},"__fa4_migrated":{"social_icon":true}}],"shape":"circle","align":"right","icon_size":{"unit":"px","size":13},"icon_padding":{"unit":"em","size":0.9},"icon_spacing":{"unit":"px","size":7},"align_tablet":"right","align_mobile":"center","hide_mobile":"hidden-phone"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]'),
(682, 102, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(683, 102, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(684, 102, '_elementor_css', 'a:6:{s:4:"time";i:1635879145;s:5:"fonts";a:1:{i:0;s:16:"Barlow Condensed";}s:5:"icons";a:2:{i:0;s:8:"fa-solid";i:1;s:9:"fa-brands";}s:20:"dynamic_elements_ids";a:2:{i:0;s:8:"1ea1eac1";i:1;s:8:"1ea1eac1";}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(687, 103, '_elementor_edit_mode', 'builder'),
(688, 103, '_elementor_template_type', 'wp-page'),
(689, 103, '_elementor_version', '3.3.0'),
(690, 103, '_elementor_pro_version', '3.3.2'),
(691, 103, '_wp_page_template', 'default'),
(692, 103, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(693, 103, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"109","right":"109","bottom":"109","left":"109","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"5becc15","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit2.png","id":89,"alt":"","source":"library"},"_margin":{"unit":"px","top":"80","right":"80","bottom":"80","left":"80","isLinked":true},"_padding":{"unit":"px","top":"64","right":"0","bottom":"0","left":"0","isLinked":false},"_background_background":"classic"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(694, 103, '_elementor_page_assets', 'a:0:{}'),
(695, 103, '_elementor_css', 'a:6:{s:4:"time";i:1635865373;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(696, 104, '_elementor_edit_mode', 'builder'),
(697, 104, '_elementor_template_type', 'wp-page'),
(698, 104, '_elementor_version', '3.3.0'),
(699, 104, '_elementor_pro_version', '3.3.2'),
(700, 104, '_wp_page_template', 'default'),
(701, 104, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(702, 104, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"109","right":"109","bottom":"109","left":"109","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"5becc15","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit2.png","id":89,"alt":"","source":"library"},"_margin":{"unit":"px","top":"80","right":"80","bottom":"80","left":"80","isLinked":true},"_padding":{"unit":"px","top":"64","right":"0","bottom":"0","left":"0","isLinked":false},"_background_background":"classic"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(703, 104, '_elementor_page_assets', 'a:0:{}'),
(704, 104, '_elementor_css', 'a:6:{s:4:"time";i:1635865373;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(705, 105, '_elementor_edit_mode', 'builder'),
(706, 105, '_elementor_template_type', 'wp-page'),
(707, 105, '_elementor_version', '3.3.0'),
(708, 105, '_elementor_pro_version', '3.3.2'),
(709, 105, '_wp_page_template', 'default'),
(710, 105, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(711, 105, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"109","right":"109","bottom":"109","left":"109","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"5becc15","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"80","right":"80","bottom":"80","left":"80","isLinked":true},"_padding":{"unit":"px","top":"64","right":"0","bottom":"0","left":"0","isLinked":false},"_background_background":"classic"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"classic","background_color":"#1FB5BE"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false}],"isInner":false}]'),
(712, 105, '_elementor_page_assets', 'a:0:{}'),
(713, 105, '_elementor_css', 'a:6:{s:4:"time";i:1635865373;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(724, 107, '_wp_attached_file', '2021/11/logo-inv.png'),
(725, 107, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:867;s:4:"file";s:20:"2021/11/logo-inv.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:20:"logo-inv-277x300.png";s:5:"width";i:277;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"logo-inv-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:20:"logo-inv-768x832.png";s:5:"width";i:768;s:6:"height";i:832;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(726, 108, '_wp_attached_file', '2021/11/grunge-paint-background-scaled.jpg'),
(727, 108, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:2560;s:6:"height";i:1536;s:4:"file";s:42:"2021/11/grunge-paint-background-scaled.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:35:"grunge-paint-background-300x180.jpg";s:5:"width";i:300;s:6:"height";i:180;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:36:"grunge-paint-background-1024x614.jpg";s:5:"width";i:1024;s:6:"height";i:614;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:35:"grunge-paint-background-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:35:"grunge-paint-background-768x461.jpg";s:5:"width";i:768;s:6:"height";i:461;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:36:"grunge-paint-background-1536x922.jpg";s:5:"width";i:1536;s:6:"height";i:922;s:9:"mime-type";s:10:"image/jpeg";}s:9:"2048x2048";a:4:{s:4:"file";s:37:"grunge-paint-background-2048x1229.jpg";s:5:"width";i:2048;s:6:"height";i:1229;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}s:14:"original_image";s:27:"grunge-paint-background.jpg";}'),
(728, 109, '_elementor_edit_mode', 'builder'),
(729, 109, '_elementor_template_type', 'wp-page'),
(730, 109, '_elementor_version', '3.3.0'),
(731, 109, '_elementor_pro_version', '3.3.2'),
(732, 109, '_wp_page_template', 'default'),
(733, 109, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(734, 109, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"109","right":"109","bottom":"109","left":"109","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"5becc15","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"80","right":"80","bottom":"80","left":"80","isLinked":true},"_padding":{"unit":"px","top":"64","right":"0","bottom":"0","left":"0","isLinked":false},"_background_background":"classic"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"classic","background_color":"#1FB5BE"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false}],"isInner":false}]'),
(735, 109, '_elementor_page_assets', 'a:0:{}'),
(736, 110, '_elementor_edit_mode', 'builder'),
(737, 110, '_elementor_template_type', 'wp-page'),
(738, 110, '_elementor_version', '3.3.0'),
(739, 110, '_elementor_pro_version', '3.3.2'),
(740, 110, '_wp_page_template', 'default'),
(741, 110, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(742, 110, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"109","right":"109","bottom":"109","left":"109","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"},{"id":"5becc15","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"80","right":"80","bottom":"80","left":"80","isLinked":true},"_padding":{"unit":"px","top":"64","right":"0","bottom":"0","left":"0","isLinked":false},"_background_background":"classic"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"classic","background_color":"#1FB5BE"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false}],"isInner":false}]'),
(743, 110, '_elementor_page_assets', 'a:0:{}'),
(744, 111, '_elementor_edit_mode', 'builder'),
(745, 111, '_elementor_template_type', 'wp-page'),
(746, 111, '_elementor_version', '3.3.0'),
(747, 111, '_elementor_pro_version', '3.3.2'),
(748, 111, '_wp_page_template', 'default'),
(749, 111, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(750, 111, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}]},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"101","bottom":"101","left":"101","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(751, 111, '_elementor_page_assets', 'a:0:{}'),
(753, 112, '_elementor_edit_mode', 'builder'),
(754, 112, '_elementor_template_type', 'header'),
(755, 112, '_elementor_version', '3.3.0'),
(756, 112, '_elementor_pro_version', '3.3.2'),
(757, 112, '_wp_page_template', 'default'),
(758, 112, '_elementor_data', '[{"id":"626d9291","elType":"section","settings":{"gap":"no","custom_height":{"unit":"px","size":150},"content_position":"middle","structure":"33","background_background":"classic","background_color":"#FFB10B87","margin":{"unit":"px","top":"-12","right":0,"bottom":"11","left":0,"isLinked":false},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":24,"spread":0,"color":"rgba(0,0,0,0.15)"},"z_index":1,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#d3d3d3","padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"sticky":"top","html_tag":"header","shape_divider_top":"mountains","padding":{"unit":"px","top":"48","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[{"id":"6582f694","elType":"column","settings":{"_column_size":25,"_inline_size":19.737,"_inline_size_mobile":50,"_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1ea1eac1","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]","link":"[elementor-tag id=\\"\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"align_tablet":"left","align_mobile":"left","width":{"unit":"px","size":120},"width_mobile":{"unit":"px","size":80},"image":{"id":10,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/placeholder.png"}},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false},{"id":"7ea612f7","elType":"column","settings":{"_column_size":50,"_inline_size":75.789,"_inline_size_mobile":50,"_inline_size_tablet":40,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3fc4e07","elType":"widget","settings":{"align_items":"center","animation_line":"slide","animation_text":"none","color_menu_item":"#54595f","color_menu_item_hover":"#39c7ce","pointer_color_menu_item_hover":"#39c7ce","menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":15},"pointer_width":{"unit":"px","size":3},"color_dropdown_item":"#000000","background_color_dropdown_item":"#f2f2f2","color_dropdown_item_hover":"#39c7ce","background_color_dropdown_item_hover":"#ededed","dropdown_typography_typography":"custom","dropdown_typography_font_size":{"unit":"px","size":15},"toggle_color":"#000000","toggle_color_hover":"#39c7ce","toggle_size":{"unit":"px","size":30},"toggle_border_width":{"unit":"px","size":0},"toggle_border_radius":{"unit":"px","size":0},"menu_typography_text_transform":"uppercase","menu_typography_font_size_tablet":{"unit":"px","size":13},"menu_space_between":{"unit":"px","size":6},"menu_space_between_tablet":{"unit":"px","size":0},"menu_typography_font_weight":"400","padding_vertical_menu_item":{"unit":"px","size":36},"full_width":"stretch","toggle_align":"right","dropdown_top_distance_mobile":{"unit":"px","size":31},"toggle_background_color":"rgba(0,0,0,0)","menu":"stylo-menu","menu_typography_font_family":"Barlow Condensed"},"elements":[],"widgetType":"nav-menu"}],"isInner":false},{"id":"40940c28","elType":"column","settings":{"_column_size":25,"_inline_size":4.474,"_inline_size_mobile":100,"_inline_size_tablet":30},"elements":[{"id":"26e5abc3","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-instagram","_id":"c58d333","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"https:\\/\\/www.instagram.com\\/stylo.mode\\/","is_external":"true","nofollow":"","custom_attributes":""},"__fa4_migrated":{"social_icon":true}}],"shape":"circle","align":"right","icon_size":{"unit":"px","size":13},"icon_padding":{"unit":"em","size":0.9},"icon_spacing":{"unit":"px","size":7},"align_tablet":"right","align_mobile":"center","hide_mobile":"hidden-phone"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]'),
(759, 112, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(760, 112, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(761, 112, '_elementor_css', 'a:6:{s:4:"time";i:1635879188;s:5:"fonts";a:1:{i:0;s:16:"Barlow Condensed";}s:5:"icons";a:2:{i:0;s:8:"fa-solid";i:1;s:9:"fa-brands";}s:20:"dynamic_elements_ids";a:2:{i:0;s:8:"1ea1eac1";i:1;s:8:"1ea1eac1";}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(763, 113, '_elementor_edit_mode', 'builder'),
(764, 113, '_elementor_template_type', 'wp-page'),
(765, 113, '_elementor_version', '3.3.0'),
(766, 113, '_elementor_pro_version', '3.3.2'),
(767, 113, '_wp_page_template', 'default'),
(768, 113, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(769, 113, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}]},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"101","bottom":"101","left":"101","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(770, 113, '_elementor_page_assets', 'a:0:{}'),
(771, 114, '_elementor_edit_mode', 'builder'),
(772, 114, '_elementor_template_type', 'wp-page'),
(773, 114, '_elementor_version', '3.3.0'),
(774, 114, '_elementor_pro_version', '3.3.2'),
(775, 114, '_wp_page_template', 'default'),
(776, 114, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(777, 114, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}]},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"101","bottom":"101","left":"101","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(778, 114, '_elementor_page_assets', 'a:0:{}'),
(779, 115, '_elementor_edit_mode', 'builder'),
(780, 115, '_elementor_template_type', 'wp-page'),
(781, 115, '_elementor_version', '3.3.0'),
(782, 115, '_elementor_pro_version', '3.3.2'),
(783, 115, '_wp_page_template', 'default'),
(784, 115, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(785, 115, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}]},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"101","bottom":"101","left":"101","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","sticky":"top"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(786, 115, '_elementor_page_assets', 'a:0:{}'),
(788, 116, '_elementor_edit_mode', 'builder'),
(789, 116, '_elementor_template_type', 'wp-page'),
(790, 116, '_elementor_version', '3.3.0'),
(791, 116, '_elementor_pro_version', '3.3.2'),
(792, 116, '_wp_page_template', 'default'),
(793, 116, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(794, 116, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}]},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"101","bottom":"101","left":"101","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","sticky":"top"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(795, 116, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(796, 117, '_elementor_edit_mode', 'builder'),
(797, 117, '_elementor_template_type', 'wp-page'),
(798, 117, '_elementor_version', '3.3.0'),
(799, 117, '_elementor_pro_version', '3.3.2'),
(800, 117, '_wp_page_template', 'default'),
(801, 117, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(802, 117, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}]},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"101","bottom":"101","left":"101","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","sticky":"top"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(803, 117, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(804, 118, '_elementor_edit_mode', 'builder'),
(805, 118, '_elementor_template_type', 'wp-page'),
(806, 118, '_elementor_version', '3.3.0'),
(807, 118, '_elementor_pro_version', '3.3.2'),
(808, 118, '_wp_page_template', 'default'),
(809, 118, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(810, 118, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}]},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"101","bottom":"101","left":"101","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(811, 118, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(825, 120, '_wp_attached_file', '2021/11/Recurso-1.png'),
(826, 120, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:800;s:4:"file";s:21:"2021/11/Recurso-1.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:21:"Recurso-1-300x300.png";s:5:"width";i:300;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"Recurso-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:21:"Recurso-1-768x768.png";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(827, 121, '_elementor_edit_mode', 'builder'),
(828, 121, '_elementor_template_type', 'wp-page'),
(829, 121, '_elementor_version', '3.3.0'),
(830, 121, '_elementor_pro_version', '3.3.2'),
(831, 121, '_wp_page_template', 'default'),
(832, 121, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(833, 121, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}]},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"101","bottom":"101","left":"101","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]');
INSERT INTO `wpui_postmeta` VALUES
(834, 121, '_elementor_page_assets', 'a:0:{}'),
(835, 122, '_elementor_edit_mode', 'builder'),
(836, 122, '_elementor_template_type', 'wp-page'),
(837, 122, '_elementor_version', '3.3.0'),
(838, 122, '_elementor_pro_version', '3.3.2'),
(839, 122, '_wp_page_template', 'default'),
(840, 122, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(841, 122, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}]},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"101","bottom":"101","left":"101","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(842, 122, '_elementor_page_assets', 'a:0:{}'),
(843, 123, '_elementor_edit_mode', 'builder'),
(844, 123, '_elementor_template_type', 'wp-page'),
(845, 123, '_elementor_version', '3.3.0'),
(846, 123, '_elementor_pro_version', '3.3.2'),
(847, 123, '_wp_page_template', 'default'),
(848, 123, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(849, 123, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}]},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"101","bottom":"101","left":"101","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(850, 123, '_elementor_page_assets', 'a:0:{}'),
(861, 125, '_elementor_edit_mode', 'builder'),
(862, 125, '_elementor_template_type', 'wp-page'),
(863, 125, '_elementor_version', '3.3.0'),
(864, 125, '_elementor_pro_version', '3.3.2'),
(865, 125, '_wp_page_template', 'default'),
(866, 125, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(867, 125, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}]},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"101","bottom":"101","left":"101","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(868, 125, '_elementor_page_assets', 'a:0:{}'),
(869, 126, '_elementor_edit_mode', 'builder'),
(870, 126, '_elementor_template_type', 'wp-page'),
(871, 126, '_elementor_version', '3.3.0'),
(872, 126, '_elementor_pro_version', '3.3.2'),
(873, 126, '_wp_page_template', 'default'),
(874, 126, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(875, 126, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}]},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"101","bottom":"101","left":"101","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(876, 126, '_elementor_page_assets', 'a:0:{}'),
(877, 127, '_elementor_edit_mode', 'builder'),
(878, 127, '_elementor_template_type', 'wp-page'),
(879, 127, '_elementor_version', '3.3.0'),
(880, 127, '_elementor_pro_version', '3.3.2'),
(881, 127, '_wp_page_template', 'default'),
(882, 127, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(883, 127, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"101","bottom":"101","left":"101","isLinked":true},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(884, 127, '_elementor_page_assets', 'a:0:{}'),
(895, 129, '_wp_attached_file', '2021/11/tit3.png'),
(896, 129, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:463;s:4:"file";s:16:"2021/11/tit3.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:16:"tit3-300x174.png";s:5:"width";i:300;s:6:"height";i:174;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:16:"tit3-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:16:"tit3-768x444.png";s:5:"width";i:768;s:6:"height";i:444;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(897, 130, '_wp_attached_file', '2021/11/tit-03.png'),
(898, 130, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:636;s:4:"file";s:18:"2021/11/tit-03.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:18:"tit-03-300x239.png";s:5:"width";i:300;s:6:"height";i:239;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:18:"tit-03-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:18:"tit-03-768x611.png";s:5:"width";i:768;s:6:"height";i:611;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(899, 131, '_wp_attached_file', '2021/11/pexels-egecan-kose-7459072-scaled.jpg'),
(900, 131, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1440;s:6:"height";i:2560;s:4:"file";s:45:"2021/11/pexels-egecan-kose-7459072-scaled.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:38:"pexels-egecan-kose-7459072-169x300.jpg";s:5:"width";i:169;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:39:"pexels-egecan-kose-7459072-576x1024.jpg";s:5:"width";i:576;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:38:"pexels-egecan-kose-7459072-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:39:"pexels-egecan-kose-7459072-768x1366.jpg";s:5:"width";i:768;s:6:"height";i:1366;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:39:"pexels-egecan-kose-7459072-864x1536.jpg";s:5:"width";i:864;s:6:"height";i:1536;s:9:"mime-type";s:10:"image/jpeg";}s:9:"2048x2048";a:4:{s:4:"file";s:40:"pexels-egecan-kose-7459072-1152x2048.jpg";s:5:"width";i:1152;s:6:"height";i:2048;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}s:14:"original_image";s:30:"pexels-egecan-kose-7459072.jpg";}'),
(901, 132, '_wp_attached_file', '2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg'),
(902, 132, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:2560;s:6:"height";i:1707;s:4:"file";s:57:"2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:50:"pexels-eberhard-grossgasteiger-1292115-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:51:"pexels-eberhard-grossgasteiger-1292115-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:50:"pexels-eberhard-grossgasteiger-1292115-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:50:"pexels-eberhard-grossgasteiger-1292115-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:52:"pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg";s:5:"width";i:1536;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"2048x2048";a:4:{s:4:"file";s:52:"pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg";s:5:"width";i:2048;s:6:"height";i:1365;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}s:14:"original_image";s:42:"pexels-eberhard-grossgasteiger-1292115.jpg";}'),
(903, 133, '_wp_attached_file', '2021/11/pexels-aleksandar-pasaric-1527934-scaled.jpg'),
(904, 133, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:2560;s:6:"height";i:1707;s:4:"file";s:52:"2021/11/pexels-aleksandar-pasaric-1527934-scaled.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:45:"pexels-aleksandar-pasaric-1527934-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:46:"pexels-aleksandar-pasaric-1527934-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:45:"pexels-aleksandar-pasaric-1527934-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:45:"pexels-aleksandar-pasaric-1527934-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:47:"pexels-aleksandar-pasaric-1527934-1536x1024.jpg";s:5:"width";i:1536;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"2048x2048";a:4:{s:4:"file";s:47:"pexels-aleksandar-pasaric-1527934-2048x1365.jpg";s:5:"width";i:2048;s:6:"height";i:1365;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}s:14:"original_image";s:37:"pexels-aleksandar-pasaric-1527934.jpg";}'),
(905, 134, '_wp_attached_file', '2021/11/tit-04.png'),
(906, 134, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:636;s:4:"file";s:18:"2021/11/tit-04.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:18:"tit-04-300x239.png";s:5:"width";i:300;s:6:"height";i:239;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:18:"tit-04-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:18:"tit-04-768x611.png";s:5:"width";i:768;s:6:"height";i:611;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(907, 135, '_elementor_edit_mode', 'builder'),
(908, 135, '_elementor_template_type', 'wp-page'),
(909, 135, '_elementor_version', '3.3.0'),
(910, 135, '_elementor_pro_version', '3.3.2'),
(911, 135, '_wp_page_template', 'default'),
(912, 135, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(913, 135, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"101","bottom":"101","left":"101","isLinked":true},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(914, 135, '_elementor_page_assets', 'a:0:{}'),
(915, 136, '_elementor_edit_mode', 'builder'),
(916, 136, '_elementor_template_type', 'wp-page'),
(917, 136, '_elementor_version', '3.3.0'),
(918, 136, '_elementor_pro_version', '3.3.2'),
(919, 136, '_wp_page_template', 'default'),
(920, 136, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(921, 136, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"50","right":"50","bottom":"50","left":"50","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/modelo-1.jpg","id":49,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":null},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"101","bottom":"101","left":"101","isLinked":true},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(922, 136, '_elementor_page_assets', 'a:0:{}'),
(923, 137, '_elementor_edit_mode', 'builder'),
(924, 137, '_elementor_template_type', 'wp-page'),
(925, 137, '_elementor_version', '3.3.0'),
(926, 137, '_elementor_pro_version', '3.3.2'),
(927, 137, '_wp_page_template', 'default'),
(928, 137, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(929, 137, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"medium","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"}},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":36.665},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":23.527},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.14},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"200","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(930, 137, '_elementor_page_assets', 'a:0:{}'),
(932, 138, '_wp_attached_file', '2021/11/mujer-scaled.jpg'),
(933, 138, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:1697;s:6:"height";i:2560;s:4:"file";s:24:"2021/11/mujer-scaled.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:17:"mujer-199x300.jpg";s:5:"width";i:199;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:18:"mujer-679x1024.jpg";s:5:"width";i:679;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"mujer-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"mujer-768x1158.jpg";s:5:"width";i:768;s:6:"height";i:1158;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:19:"mujer-1018x1536.jpg";s:5:"width";i:1018;s:6:"height";i:1536;s:9:"mime-type";s:10:"image/jpeg";}s:9:"2048x2048";a:4:{s:4:"file";s:19:"mujer-1358x2048.jpg";s:5:"width";i:1358;s:6:"height";i:2048;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}s:14:"original_image";s:9:"mujer.jpg";}'),
(934, 139, '_elementor_edit_mode', 'builder'),
(935, 139, '_elementor_template_type', 'wp-page'),
(936, 139, '_elementor_version', '3.3.0'),
(937, 139, '_elementor_pro_version', '3.3.2'),
(938, 139, '_wp_page_template', 'default'),
(939, 139, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(940, 139, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"medium","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"}},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":36.665},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":23.527},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.14},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"200","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(941, 139, '_elementor_page_assets', 'a:0:{}'),
(942, 140, '_elementor_edit_mode', 'builder'),
(943, 140, '_elementor_template_type', 'wp-page'),
(944, 140, '_elementor_version', '3.3.0'),
(945, 140, '_elementor_pro_version', '3.3.2'),
(946, 140, '_wp_page_template', 'default'),
(947, 140, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(948, 140, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"medium","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"}},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":36.665},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":23.527},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.14},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"200","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(949, 140, '_elementor_page_assets', 'a:0:{}'),
(950, 141, '_elementor_edit_mode', 'builder'),
(951, 141, '_elementor_template_type', 'wp-page'),
(952, 141, '_elementor_version', '3.3.0'),
(953, 141, '_elementor_pro_version', '3.3.2'),
(954, 141, '_wp_page_template', 'default'),
(955, 141, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(956, 141, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(957, 141, '_elementor_page_assets', 'a:0:{}'),
(968, 143, '_wp_attached_file', '2021/11/pexels-nick-collins-1293120-scaled.jpg'),
(969, 143, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:2560;s:6:"height";i:1707;s:4:"file";s:46:"2021/11/pexels-nick-collins-1293120-scaled.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:39:"pexels-nick-collins-1293120-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:40:"pexels-nick-collins-1293120-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:39:"pexels-nick-collins-1293120-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:39:"pexels-nick-collins-1293120-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:41:"pexels-nick-collins-1293120-1536x1024.jpg";s:5:"width";i:1536;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"2048x2048";a:4:{s:4:"file";s:41:"pexels-nick-collins-1293120-2048x1365.jpg";s:5:"width";i:2048;s:6:"height";i:1365;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}s:14:"original_image";s:31:"pexels-nick-collins-1293120.jpg";}'),
(970, 144, '_elementor_edit_mode', 'builder'),
(971, 144, '_elementor_template_type', 'wp-page'),
(972, 144, '_elementor_version', '3.3.0'),
(973, 144, '_elementor_pro_version', '3.3.2'),
(974, 144, '_wp_page_template', 'default');
INSERT INTO `wpui_postmeta` VALUES
(975, 144, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(976, 144, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(977, 144, '_elementor_page_assets', 'a:0:{}'),
(978, 145, '_elementor_edit_mode', 'builder'),
(979, 145, '_elementor_template_type', 'wp-page'),
(980, 145, '_elementor_version', '3.3.0'),
(981, 145, '_elementor_pro_version', '3.3.2'),
(982, 145, '_wp_page_template', 'default'),
(983, 145, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(984, 145, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(985, 145, '_elementor_page_assets', 'a:0:{}'),
(986, 146, '_elementor_edit_mode', 'builder'),
(987, 146, '_elementor_template_type', 'wp-page'),
(988, 146, '_elementor_version', '3.3.0'),
(989, 146, '_elementor_pro_version', '3.3.2'),
(990, 146, '_wp_page_template', 'default'),
(991, 146, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(992, 146, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"slideshow","background_slideshow_gallery":[{"id":143,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-nick-collins-1293120-scaled.jpg"}]},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[],"isInner":false}],"isInner":false}]'),
(993, 146, '_elementor_page_assets', 'a:0:{}'),
(995, 147, '_wp_attached_file', '2021/11/fondo01.jpg'),
(996, 147, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1600;s:6:"height";i:637;s:4:"file";s:19:"2021/11/fondo01.jpg";s:5:"sizes";a:5:{s:6:"medium";a:4:{s:4:"file";s:19:"fondo01-300x119.jpg";s:5:"width";i:300;s:6:"height";i:119;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:20:"fondo01-1024x408.jpg";s:5:"width";i:1024;s:6:"height";i:408;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"fondo01-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"fondo01-768x306.jpg";s:5:"width";i:768;s:6:"height";i:306;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:20:"fondo01-1536x612.jpg";s:5:"width";i:1536;s:6:"height";i:612;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1008, 149, '_wp_attached_file', '2021/11/letras.png'),
(1009, 149, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:175;s:4:"file";s:18:"2021/11/letras.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:17:"letras-300x66.png";s:5:"width";i:300;s:6:"height";i:66;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:18:"letras-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:18:"letras-768x168.png";s:5:"width";i:768;s:6:"height";i:168;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1010, 150, '_elementor_edit_mode', 'builder'),
(1011, 150, '_elementor_template_type', 'wp-page'),
(1012, 150, '_elementor_version', '3.3.0'),
(1013, 150, '_elementor_pro_version', '3.3.2'),
(1014, 150, '_wp_page_template', 'default'),
(1015, 150, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1016, 150, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"slideshow","background_slideshow_gallery":[{"id":143,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-nick-collins-1293120-scaled.jpg"}]},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[],"isInner":false}],"isInner":false}]'),
(1017, 150, '_elementor_page_assets', 'a:0:{}'),
(1018, 151, '_elementor_edit_mode', 'builder'),
(1019, 151, '_elementor_template_type', 'wp-page'),
(1020, 151, '_elementor_version', '3.3.0'),
(1021, 151, '_elementor_pro_version', '3.3.2'),
(1022, 151, '_wp_page_template', 'default'),
(1023, 151, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1024, 151, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"slideshow","background_slideshow_gallery":[{"id":143,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-nick-collins-1293120-scaled.jpg"}]},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[],"isInner":false}],"isInner":false}]'),
(1025, 151, '_elementor_page_assets', 'a:0:{}'),
(1026, 152, '_elementor_edit_mode', 'builder'),
(1027, 152, '_elementor_template_type', 'wp-page'),
(1028, 152, '_elementor_version', '3.3.0'),
(1029, 152, '_elementor_pro_version', '3.3.2'),
(1030, 152, '_wp_page_template', 'default'),
(1031, 152, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1032, 152, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1033, 152, '_elementor_page_assets', 'a:0:{}'),
(1044, 154, '_wp_attached_file', '2021/11/laura02.jpeg'),
(1045, 154, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:576;s:6:"height";i:1024;s:4:"file";s:20:"2021/11/laura02.jpeg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:20:"laura02-169x300.jpeg";s:5:"width";i:169;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"laura02-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1047, 155, '_wp_attached_file', '2021/11/laura03.jpeg'),
(1048, 155, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:800;s:4:"file";s:20:"2021/11/laura03.jpeg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:20:"laura03-240x300.jpeg";s:5:"width";i:240;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:20:"laura03-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1049, 156, '_elementor_edit_mode', 'builder'),
(1050, 156, '_elementor_template_type', 'wp-page'),
(1051, 156, '_elementor_version', '3.3.0'),
(1052, 156, '_elementor_pro_version', '3.3.2'),
(1053, 156, '_wp_page_template', 'default'),
(1054, 156, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1055, 156, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1056, 156, '_elementor_page_assets', 'a:0:{}'),
(1057, 156, '_elementor_css', 'a:6:{s:4:"time";i:1635932280;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1058, 157, '_elementor_edit_mode', 'builder'),
(1059, 157, '_elementor_template_type', 'wp-page'),
(1060, 157, '_elementor_version', '3.3.0'),
(1061, 157, '_elementor_pro_version', '3.3.2'),
(1062, 157, '_wp_page_template', 'default'),
(1063, 157, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1064, 157, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1065, 157, '_elementor_page_assets', 'a:0:{}'),
(1066, 157, '_elementor_css', 'a:6:{s:4:"time";i:1635932280;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1067, 158, '_elementor_edit_mode', 'builder'),
(1068, 158, '_elementor_template_type', 'wp-page'),
(1069, 158, '_elementor_version', '3.3.0'),
(1070, 158, '_elementor_pro_version', '3.3.2'),
(1071, 158, '_wp_page_template', 'default'),
(1072, 158, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1073, 158, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_color":"#3294BC","margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":true}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]');
INSERT INTO `wpui_postmeta` VALUES
(1074, 158, '_elementor_page_assets', 'a:0:{}'),
(1075, 158, '_elementor_css', 'a:6:{s:4:"time";i:1635932280;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1086, 160, '_wp_attached_file', '2021/11/hojas.jpg'),
(1087, 160, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:626;s:6:"height";i:417;s:4:"file";s:17:"2021/11/hojas.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:17:"hojas-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"hojas-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1088, 161, '_wp_attached_file', '2021/11/hojascolor.jpg'),
(1089, 161, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:626;s:6:"height";i:417;s:4:"file";s:22:"2021/11/hojascolor.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:22:"hojascolor-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:22:"hojascolor-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(1090, 162, '_elementor_edit_mode', 'builder'),
(1091, 162, '_elementor_template_type', 'wp-page'),
(1092, 162, '_elementor_version', '3.3.0'),
(1093, 162, '_elementor_pro_version', '3.3.2'),
(1094, 162, '_wp_page_template', 'default'),
(1095, 162, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1096, 162, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_color":"#3294BC","margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":true}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]'),
(1097, 162, '_elementor_page_assets', 'a:0:{}'),
(1098, 163, '_elementor_edit_mode', 'builder'),
(1099, 163, '_elementor_template_type', 'wp-page'),
(1100, 163, '_elementor_version', '3.3.0'),
(1101, 163, '_elementor_pro_version', '3.3.2'),
(1102, 163, '_wp_page_template', 'default'),
(1103, 163, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1104, 163, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_color":"#3294BC","margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":true}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]'),
(1105, 163, '_elementor_page_assets', 'a:0:{}'),
(1106, 164, '_elementor_edit_mode', 'builder'),
(1107, 164, '_elementor_template_type', 'wp-page'),
(1108, 164, '_elementor_version', '3.3.0'),
(1109, 164, '_elementor_pro_version', '3.3.2'),
(1110, 164, '_wp_page_template', 'default'),
(1111, 164, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1112, 164, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":true},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]'),
(1113, 164, '_elementor_page_assets', 'a:0:{}'),
(1115, 165, '_elementor_edit_mode', 'builder'),
(1116, 165, '_elementor_template_type', 'header'),
(1117, 165, '_elementor_version', '3.3.0'),
(1118, 165, '_elementor_pro_version', '3.3.2'),
(1119, 165, '_wp_page_template', 'default'),
(1120, 165, '_elementor_data', '[{"id":"626d9291","elType":"section","settings":{"gap":"no","custom_height":{"unit":"px","size":150},"content_position":"middle","structure":"33","background_background":"classic","background_color":"#FFB10B87","margin":{"unit":"px","top":"-12","right":0,"bottom":"11","left":0,"isLinked":false},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":24,"spread":0,"color":"rgba(0,0,0,0.15)"},"z_index":1,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#d3d3d3","padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"sticky":"top","html_tag":"header","shape_divider_top":"mountains","padding":{"unit":"px","top":"48","right":"0","bottom":"0","left":"0","isLinked":false},"shape_divider_top_height":{"unit":"px","size":49,"sizes":[]}},"elements":[{"id":"6582f694","elType":"column","settings":{"_column_size":25,"_inline_size":19.737,"_inline_size_mobile":50,"_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1ea1eac1","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]","link":"[elementor-tag id=\\"\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"align_tablet":"left","align_mobile":"left","width":{"unit":"px","size":120},"width_mobile":{"unit":"px","size":80},"image":{"id":10,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/placeholder.png"}},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false},{"id":"7ea612f7","elType":"column","settings":{"_column_size":50,"_inline_size":75.789,"_inline_size_mobile":50,"_inline_size_tablet":40,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3fc4e07","elType":"widget","settings":{"align_items":"center","animation_line":"slide","animation_text":"none","color_menu_item":"#54595f","color_menu_item_hover":"#39c7ce","pointer_color_menu_item_hover":"#39c7ce","menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":15},"pointer_width":{"unit":"px","size":3},"color_dropdown_item":"#000000","background_color_dropdown_item":"#f2f2f2","color_dropdown_item_hover":"#39c7ce","background_color_dropdown_item_hover":"#ededed","dropdown_typography_typography":"custom","dropdown_typography_font_size":{"unit":"px","size":15},"toggle_color":"#000000","toggle_color_hover":"#39c7ce","toggle_size":{"unit":"px","size":30},"toggle_border_width":{"unit":"px","size":0},"toggle_border_radius":{"unit":"px","size":0},"menu_typography_text_transform":"uppercase","menu_typography_font_size_tablet":{"unit":"px","size":13},"menu_space_between":{"unit":"px","size":6},"menu_space_between_tablet":{"unit":"px","size":0},"menu_typography_font_weight":"400","padding_vertical_menu_item":{"unit":"px","size":36},"full_width":"stretch","toggle_align":"right","dropdown_top_distance_mobile":{"unit":"px","size":31},"toggle_background_color":"rgba(0,0,0,0)","menu":"stylo-menu","menu_typography_font_family":"Barlow Condensed"},"elements":[],"widgetType":"nav-menu"}],"isInner":false},{"id":"40940c28","elType":"column","settings":{"_column_size":25,"_inline_size":4.474,"_inline_size_mobile":100,"_inline_size_tablet":30},"elements":[{"id":"26e5abc3","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-instagram","_id":"c58d333","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"https:\\/\\/www.instagram.com\\/stylo.mode\\/","is_external":"true","nofollow":"","custom_attributes":""},"__fa4_migrated":{"social_icon":true}}],"shape":"circle","align":"right","icon_size":{"unit":"px","size":13},"icon_padding":{"unit":"em","size":0.9},"icon_spacing":{"unit":"px","size":7},"align_tablet":"right","align_mobile":"center","hide_mobile":"hidden-phone"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]'),
(1121, 165, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(1122, 165, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(1123, 165, '_elementor_css', 'a:6:{s:4:"time";i:1635892756;s:5:"fonts";a:1:{i:0;s:16:"Barlow Condensed";}s:5:"icons";a:2:{i:0;s:8:"fa-solid";i:1;s:9:"fa-brands";}s:20:"dynamic_elements_ids";a:2:{i:0;s:8:"1ea1eac1";i:1;s:8:"1ea1eac1";}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1125, 166, '_elementor_edit_mode', 'builder'),
(1126, 166, '_elementor_template_type', 'header'),
(1127, 166, '_elementor_version', '3.3.0'),
(1128, 166, '_elementor_pro_version', '3.3.2'),
(1129, 166, '_wp_page_template', 'default'),
(1130, 166, '_elementor_data', '[{"id":"626d9291","elType":"section","settings":{"gap":"no","custom_height":{"unit":"px","size":150},"content_position":"middle","structure":"33","background_background":"classic","background_color":"#FFB10B87","margin":{"unit":"px","top":"-12","right":0,"bottom":"11","left":0,"isLinked":false},"padding_tablet":{"unit":"px","top":"30","right":"20","bottom":"30","left":"20","isLinked":false},"box_shadow_box_shadow":{"horizontal":0,"vertical":0,"blur":24,"spread":0,"color":"rgba(0,0,0,0.15)"},"z_index":1,"border_border":"solid","border_width":{"unit":"px","top":"0","right":"0","bottom":"1","left":"0","isLinked":false},"border_color":"#d3d3d3","padding_mobile":{"unit":"px","top":"20","right":"20","bottom":"20","left":"20","isLinked":true},"sticky":"top","html_tag":"header","shape_divider_top":"mountains","padding":{"unit":"px","top":"48","right":"0","bottom":"0","left":"0","isLinked":false},"shape_divider_top_height":{"unit":"px","size":49,"sizes":[]}},"elements":[{"id":"6582f694","elType":"column","settings":{"_column_size":25,"_inline_size":20,"_inline_size_mobile":50,"_inline_size_tablet":30,"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"1ea1eac1","elType":"widget","settings":{"__dynamic__":{"image":"[elementor-tag id=\\"\\" name=\\"site-logo\\" settings=\\"%7B%7D\\"]","link":"[elementor-tag id=\\"\\" name=\\"site-url\\" settings=\\"%7B%7D\\"]"},"align_tablet":"left","align_mobile":"left","width":{"unit":"px","size":197},"width_mobile":{"unit":"px","size":80},"image":{"id":10,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/placeholder.png"},"image_size":"large"},"elements":[],"widgetType":"theme-site-logo"}],"isInner":false},{"id":"7ea612f7","elType":"column","settings":{"_column_size":50,"_inline_size":75.526,"_inline_size_mobile":50,"_inline_size_tablet":40,"margin_tablet":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"margin_mobile":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":true}},"elements":[{"id":"3fc4e07","elType":"widget","settings":{"align_items":"center","animation_line":"slide","animation_text":"none","color_menu_item":"#54595f","color_menu_item_hover":"#39c7ce","pointer_color_menu_item_hover":"#39c7ce","menu_typography_typography":"custom","menu_typography_font_size":{"unit":"px","size":19},"pointer_width":{"unit":"px","size":3},"color_dropdown_item":"#000000","background_color_dropdown_item":"#f2f2f2","color_dropdown_item_hover":"#39c7ce","background_color_dropdown_item_hover":"#ededed","dropdown_typography_typography":"custom","dropdown_typography_font_size":{"unit":"px","size":15},"toggle_color":"#000000","toggle_color_hover":"#39c7ce","toggle_size":{"unit":"px","size":30},"toggle_border_width":{"unit":"px","size":0},"toggle_border_radius":{"unit":"px","size":0},"menu_typography_text_transform":"uppercase","menu_typography_font_size_tablet":{"unit":"px","size":13},"menu_space_between":{"unit":"px","size":6},"menu_space_between_tablet":{"unit":"px","size":0},"menu_typography_font_weight":"400","padding_vertical_menu_item":{"unit":"px","size":36},"full_width":"stretch","toggle_align":"right","dropdown_top_distance_mobile":{"unit":"px","size":31},"toggle_background_color":"rgba(0,0,0,0)","menu":"stylo-menu","menu_typography_font_family":"Barlow Condensed"},"elements":[],"widgetType":"nav-menu"}],"isInner":false},{"id":"40940c28","elType":"column","settings":{"_column_size":25,"_inline_size":4.474,"_inline_size_mobile":100,"_inline_size_tablet":30},"elements":[{"id":"26e5abc3","elType":"widget","settings":{"social_icon_list":[{"social":"fa fa-instagram","_id":"c58d333","social_icon":{"value":"fab fa-instagram","library":"fa-brands"},"link":{"url":"https:\\/\\/www.instagram.com\\/stylo.mode\\/","is_external":"true","nofollow":"","custom_attributes":""},"__fa4_migrated":{"social_icon":true}}],"shape":"circle","align":"right","icon_size":{"unit":"px","size":13},"icon_padding":{"unit":"em","size":0.9},"icon_spacing":{"unit":"px","size":7},"align_tablet":"right","align_mobile":"center","hide_mobile":"hidden-phone"},"elements":[],"widgetType":"social-icons"}],"isInner":false}],"isInner":false}]'),
(1131, 166, '_elementor_page_assets', 'a:1:{s:7:"scripts";a:1:{i:0;s:8:"e-sticky";}}'),
(1132, 166, '_elementor_conditions', 'a:1:{i:0;s:15:"include/general";}'),
(1133, 8, '_elementor_controls_usage', 'a:5:{s:15:"theme-site-logo";a:3:{s:5:"count";i:1;s:15:"control_percent";i:2;s:8:"controls";a:3:{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:5:{s:12:"align_tablet";i:1;s:12:"align_mobile";i:1;s:5:"image";i:1;s:10:"image_size";i:1;s:4:"link";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:2:{s:5:"width";i:1;s:12:"width_mobile";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:3;s:15:"control_percent";i:1;s:8:"controls";a:2:{s:6:"layout";a:1:{s:6:"layout";a:3:{s:12:"_inline_size";i:3;s:19:"_inline_size_mobile";i:3;s:19:"_inline_size_tablet";i:3;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:13:"margin_mobile";i:2;s:13:"margin_tablet";i:1;}}}}s:8:"nav-menu";a:3:{s:5:"count";i:1;s:15:"control_percent";i:8;s:8:"controls";a:2:{s:7:"content";a:1:{s:14:"section_layout";a:5:{s:11:"align_items";i:1;s:14:"animation_line";i:1;s:14:"animation_text";i:1;s:10:"full_width";i:1;s:12:"toggle_align";i:1;}}s:5:"style";a:3:{s:23:"section_style_main-menu";a:13:{s:15:"color_menu_item";i:1;s:21:"color_menu_item_hover";i:1;s:29:"pointer_color_menu_item_hover";i:1;s:26:"menu_typography_typography";i:1;s:25:"menu_typography_font_size";i:1;s:13:"pointer_width";i:1;s:30:"menu_typography_text_transform";i:1;s:32:"menu_typography_font_size_tablet";i:1;s:18:"menu_space_between";i:1;s:25:"menu_space_between_tablet";i:1;s:27:"menu_typography_font_weight";i:1;s:26:"padding_vertical_menu_item";i:1;s:27:"menu_typography_font_family";i:1;}s:22:"section_style_dropdown";a:7:{s:19:"color_dropdown_item";i:1;s:30:"background_color_dropdown_item";i:1;s:25:"color_dropdown_item_hover";i:1;s:36:"background_color_dropdown_item_hover";i:1;s:30:"dropdown_typography_typography";i:1;s:29:"dropdown_typography_font_size";i:1;s:28:"dropdown_top_distance_mobile";i:1;}s:12:"style_toggle";a:6:{s:12:"toggle_color";i:1;s:18:"toggle_color_hover";i:1;s:11:"toggle_size";i:1;s:19:"toggle_border_width";i:1;s:20:"toggle_border_radius";i:1;s:23:"toggle_background_color";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:1:{s:19:"section_social_icon";a:5:{s:16:"social_icon_list";i:1;s:5:"shape";i:1;s:5:"align";i:1;s:12:"align_tablet";i:1;s:12:"align_mobile";i:1;}}s:5:"style";a:1:{s:20:"section_social_style";a:3:{s:9:"icon_size";i:1;s:12:"icon_padding";i:1;s:12:"icon_spacing";i:1;}}s:8:"advanced";a:1:{s:19:"_section_responsive";a:1:{s:11:"hide_mobile";i:1;}}}}s:7:"section";a:3:{s:5:"count";i:1;s:15:"control_percent";i:5;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:4:{s:3:"gap";i:1;s:13:"custom_height";i:1;s:16:"content_position";i:1;s:8:"html_tag";i:1;}s:17:"section_structure";a:1:{s:9:"structure";i:1;}}s:5:"style";a:3:{s:18:"section_background";a:2:{s:21:"background_background";i:1;s:16:"background_color";i:1;}s:14:"section_border";a:4:{s:21:"box_shadow_box_shadow";i:1;s:13:"border_border";i:1;s:12:"border_width";i:1;s:12:"border_color";i:1;}s:21:"section_shape_divider";a:2:{s:17:"shape_divider_top";i:1;s:24:"shape_divider_top_height";i:1;}}s:8:"advanced";a:2:{s:16:"section_advanced";a:5:{s:6:"margin";i:1;s:14:"padding_tablet";i:1;s:7:"z_index";i:1;s:14:"padding_mobile";i:1;s:7:"padding";i:1;}s:15:"section_effects";a:1:{s:6:"sticky";i:1;}}}}}'),
(1135, 8, '_elementor_css', 'a:6:{s:4:"time";i:1635932736;s:5:"fonts";a:1:{i:0;s:16:"Barlow Condensed";}s:5:"icons";a:2:{i:0;s:8:"fa-solid";i:1;s:9:"fa-brands";}s:20:"dynamic_elements_ids";a:2:{i:0;s:8:"1ea1eac1";i:1;s:8:"1ea1eac1";}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1136, 167, '_elementor_edit_mode', 'builder'),
(1137, 167, '_elementor_template_type', 'wp-page'),
(1138, 167, '_elementor_version', '3.3.0'),
(1139, 167, '_elementor_pro_version', '3.3.2'),
(1140, 167, '_wp_page_template', 'default'),
(1141, 167, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1142, 167, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":true},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]'),
(1143, 167, '_elementor_page_assets', 'a:0:{}'),
(1144, 167, '_elementor_css', 'a:6:{s:4:"time";i:1635932736;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1145, 168, '_elementor_edit_mode', 'builder'),
(1146, 168, '_elementor_template_type', 'wp-page'),
(1147, 168, '_elementor_version', '3.3.0'),
(1148, 168, '_elementor_pro_version', '3.3.2'),
(1149, 168, '_wp_page_template', 'default'),
(1150, 168, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1151, 168, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"contain"},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":true},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]');
INSERT INTO `wpui_postmeta` VALUES
(1152, 168, '_elementor_page_assets', 'a:0:{}'),
(1153, 168, '_elementor_css', 'a:6:{s:4:"time";i:1635932736;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1154, 169, '_elementor_edit_mode', 'builder'),
(1155, 169, '_elementor_template_type', 'wp-page'),
(1156, 169, '_elementor_version', '3.3.0'),
(1157, 169, '_elementor_pro_version', '3.3.2'),
(1158, 169, '_wp_page_template', 'default'),
(1159, 169, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1160, 169, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":true},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]'),
(1161, 169, '_elementor_page_assets', 'a:0:{}'),
(1162, 169, '_elementor_css', 'a:6:{s:4:"time";i:1635932736;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1164, 170, '_elementor_edit_mode', 'builder'),
(1165, 170, '_elementor_template_type', 'wp-page'),
(1166, 170, '_elementor_version', '3.3.0'),
(1167, 170, '_elementor_pro_version', '3.3.2'),
(1168, 170, '_wp_page_template', 'default'),
(1169, 170, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1170, 170, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":true},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]'),
(1171, 170, '_elementor_page_assets', 'a:0:{}'),
(1172, 171, '_elementor_edit_mode', 'builder'),
(1173, 171, '_elementor_template_type', 'wp-page'),
(1174, 171, '_elementor_version', '3.3.0'),
(1175, 171, '_elementor_pro_version', '3.3.2'),
(1176, 171, '_wp_page_template', 'default'),
(1177, 171, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1178, 171, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":true},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]'),
(1179, 171, '_elementor_page_assets', 'a:0:{}'),
(1180, 172, '_elementor_edit_mode', 'builder'),
(1181, 172, '_elementor_template_type', 'wp-page'),
(1182, 172, '_elementor_version', '3.3.0'),
(1183, 172, '_elementor_pro_version', '3.3.2'),
(1184, 172, '_wp_page_template', 'default'),
(1185, 172, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1186, 172, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":true},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]'),
(1187, 172, '_elementor_page_assets', 'a:0:{}'),
(1189, 173, '_elementor_edit_mode', 'builder'),
(1190, 173, '_elementor_template_type', 'wp-page'),
(1191, 173, '_elementor_version', '3.3.0'),
(1192, 173, '_elementor_pro_version', '3.3.2'),
(1193, 173, '_wp_page_template', 'default'),
(1194, 173, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1195, 173, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":true},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]'),
(1196, 173, '_elementor_page_assets', 'a:0:{}'),
(1197, 174, '_elementor_edit_mode', 'builder'),
(1198, 174, '_elementor_template_type', 'wp-page'),
(1199, 174, '_elementor_version', '3.3.0'),
(1200, 174, '_elementor_pro_version', '3.3.2'),
(1201, 174, '_wp_page_template', 'default'),
(1202, 174, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1203, 174, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":true},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]'),
(1204, 174, '_elementor_page_assets', 'a:0:{}'),
(1205, 175, '_elementor_edit_mode', 'builder'),
(1206, 175, '_elementor_template_type', 'wp-page'),
(1207, 175, '_elementor_version', '3.3.0'),
(1208, 175, '_elementor_pro_version', '3.3.2'),
(1209, 175, '_wp_page_template', 'default'),
(1210, 175, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1211, 175, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":true},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]');
INSERT INTO `wpui_postmeta` VALUES
(1212, 175, '_elementor_page_assets', 'a:0:{}'),
(1223, 177, '_wp_attached_file', '2021/11/hojas02.jpg'),
(1224, 177, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:432;s:4:"file";s:19:"2021/11/hojas02.jpg";s:5:"sizes";a:2:{s:6:"medium";a:4:{s:4:"file";s:19:"hojas02-300x216.jpg";s:5:"width";i:300;s:6:"height";i:216;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"hojas02-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(1225, 178, '_wp_attached_file', '2021/11/atrvete.png'),
(1226, 178, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:205;s:4:"file";s:19:"2021/11/atrvete.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:18:"atrvete-300x77.png";s:5:"width";i:300;s:6:"height";i:77;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:19:"atrvete-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:19:"atrvete-768x197.png";s:5:"width";i:768;s:6:"height";i:197;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1227, 179, '_wp_attached_file', '2021/11/atrevete2.png'),
(1228, 179, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:205;s:4:"file";s:21:"2021/11/atrevete2.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:20:"atrevete2-300x77.png";s:5:"width";i:300;s:6:"height";i:77;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:21:"atrevete2-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:21:"atrevete2-768x197.png";s:5:"width";i:768;s:6:"height";i:197;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1229, 180, '_elementor_edit_mode', 'builder'),
(1230, 180, '_elementor_template_type', 'wp-page'),
(1231, 180, '_elementor_version', '3.3.0'),
(1232, 180, '_elementor_pro_version', '3.3.2'),
(1233, 180, '_wp_page_template', 'default'),
(1234, 180, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1235, 180, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":true},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]'),
(1236, 180, '_elementor_page_assets', 'a:0:{}'),
(1237, 181, '_elementor_edit_mode', 'builder'),
(1238, 181, '_elementor_template_type', 'wp-page'),
(1239, 181, '_elementor_version', '3.3.0'),
(1240, 181, '_elementor_pro_version', '3.3.2'),
(1241, 181, '_wp_page_template', 'default'),
(1242, 181, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1243, 181, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"40","left":0,"isLinked":true},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]'),
(1244, 181, '_elementor_page_assets', 'a:0:{}'),
(1245, 182, '_elementor_edit_mode', 'builder'),
(1246, 182, '_elementor_template_type', 'wp-page'),
(1247, 182, '_elementor_version', '3.3.0'),
(1248, 182, '_elementor_pro_version', '3.3.2'),
(1249, 182, '_wp_page_template', 'default'),
(1250, 182, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1251, 182, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"47","right":"47","bottom":"47","left":"47","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/atrevete2.png","id":179,"alt":"","source":"library"},"_margin":{"unit":"px","top":"141","right":"141","bottom":"141","left":"141","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1252, 182, '_elementor_page_assets', 'a:0:{}'),
(1254, 183, '_elementor_edit_mode', 'builder'),
(1255, 183, '_elementor_template_type', 'wp-page'),
(1256, 183, '_elementor_version', '3.3.0'),
(1257, 183, '_elementor_pro_version', '3.3.2'),
(1258, 183, '_wp_page_template', 'default'),
(1259, 183, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1260, 183, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"47","right":"47","bottom":"47","left":"47","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/atrevete2.png","id":179,"alt":"","source":"library"},"_margin":{"unit":"px","top":"141","right":"141","bottom":"141","left":"141","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1261, 183, '_elementor_page_assets', 'a:0:{}'),
(1262, 184, '_elementor_edit_mode', 'builder'),
(1263, 184, '_elementor_template_type', 'wp-page'),
(1264, 184, '_elementor_version', '3.3.0'),
(1265, 184, '_elementor_pro_version', '3.3.2'),
(1266, 184, '_wp_page_template', 'default'),
(1267, 184, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1268, 184, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"47","right":"47","bottom":"47","left":"47","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/atrevete2.png","id":179,"alt":"","source":"library"},"_margin":{"unit":"px","top":"141","right":"141","bottom":"141","left":"141","isLinked":true}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1269, 184, '_elementor_page_assets', 'a:0:{}'),
(1270, 185, '_elementor_edit_mode', 'builder'),
(1271, 185, '_elementor_template_type', 'wp-page'),
(1272, 185, '_elementor_version', '3.3.0'),
(1273, 185, '_elementor_pro_version', '3.3.2'),
(1274, 185, '_wp_page_template', 'default'),
(1275, 185, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1276, 185, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/atrevete2.png","id":179,"alt":"","source":"library"},"_margin":{"unit":"px","top":"141","right":"141","bottom":"141","left":"141","isLinked":true},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]');
INSERT INTO `wpui_postmeta` VALUES
(1277, 185, '_elementor_page_assets', 'a:0:{}'),
(1279, 186, '_wp_attached_file', '2021/11/tit05.png'),
(1280, 186, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:185;s:4:"file";s:17:"2021/11/tit05.png";s:5:"sizes";a:3:{s:6:"medium";a:4:{s:4:"file";s:16:"tit05-300x69.png";s:5:"width";i:300;s:6:"height";i:69;s:9:"mime-type";s:9:"image/png";}s:9:"thumbnail";a:4:{s:4:"file";s:17:"tit05-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:17:"tit05-768x178.png";s:5:"width";i:768;s:6:"height";i:178;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(1290, 188, '_elementor_edit_mode', 'builder'),
(1291, 188, '_elementor_template_type', 'wp-page'),
(1292, 188, '_elementor_version', '3.3.0'),
(1293, 188, '_elementor_pro_version', '3.3.2'),
(1294, 188, '_wp_page_template', 'default'),
(1295, 188, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1296, 188, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/atrevete2.png","id":179,"alt":"","source":"library"},"_margin":{"unit":"px","top":"141","right":"141","bottom":"141","left":"141","isLinked":true},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1297, 188, '_elementor_page_assets', 'a:0:{}'),
(1298, 189, '_elementor_edit_mode', 'builder'),
(1299, 189, '_elementor_template_type', 'wp-page'),
(1300, 189, '_elementor_version', '3.3.0'),
(1301, 189, '_elementor_pro_version', '3.3.2'),
(1302, 189, '_wp_page_template', 'default'),
(1303, 189, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1304, 189, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/atrevete2.png","id":179,"alt":"","source":"library"},"_margin":{"unit":"px","top":"141","right":"141","bottom":"141","left":"141","isLinked":true},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1305, 189, '_elementor_page_assets', 'a:0:{}'),
(1306, 190, '_elementor_edit_mode', 'builder'),
(1307, 190, '_elementor_template_type', 'wp-page'),
(1308, 190, '_elementor_version', '3.3.0'),
(1309, 190, '_elementor_pro_version', '3.3.2'),
(1310, 190, '_wp_page_template', 'default'),
(1311, 190, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1312, 190, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit05.png","id":186,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"69","bottom":"69","left":"69","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1313, 190, '_elementor_page_assets', 'a:0:{}'),
(1315, 191, '_elementor_edit_mode', 'builder'),
(1316, 191, '_elementor_template_type', 'wp-page'),
(1317, 191, '_elementor_version', '3.3.0'),
(1318, 191, '_elementor_pro_version', '3.3.2'),
(1319, 191, '_wp_page_template', 'default'),
(1320, 191, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1321, 191, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit05.png","id":186,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"69","bottom":"69","left":"69","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1322, 191, '_elementor_page_assets', 'a:0:{}'),
(1323, 192, '_elementor_edit_mode', 'builder'),
(1324, 192, '_elementor_template_type', 'wp-page'),
(1325, 192, '_elementor_version', '3.3.0'),
(1326, 192, '_elementor_pro_version', '3.3.2'),
(1327, 192, '_wp_page_template', 'default'),
(1328, 192, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1329, 192, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit05.png","id":186,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"69","bottom":"69","left":"69","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1330, 192, '_elementor_page_assets', 'a:0:{}'),
(1331, 193, '_elementor_edit_mode', 'builder'),
(1332, 193, '_elementor_template_type', 'wp-page'),
(1333, 193, '_elementor_version', '3.3.0'),
(1334, 193, '_elementor_pro_version', '3.3.2'),
(1335, 193, '_wp_page_template', 'default'),
(1336, 193, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1337, 193, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit05.png","id":186,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"69","bottom":"69","left":"69","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]');
INSERT INTO `wpui_postmeta` VALUES
(1338, 193, '_elementor_page_assets', 'a:0:{}'),
(1341, 194, '_wp_attached_file', '2021/11/pexels-picjumbocom-196667-scaled.jpg'),
(1342, 194, '_wp_attachment_metadata', 'a:6:{s:5:"width";i:2560;s:6:"height";i:1707;s:4:"file";s:44:"2021/11/pexels-picjumbocom-196667-scaled.jpg";s:5:"sizes";a:6:{s:6:"medium";a:4:{s:4:"file";s:37:"pexels-picjumbocom-196667-300x200.jpg";s:5:"width";i:300;s:6:"height";i:200;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:38:"pexels-picjumbocom-196667-1024x683.jpg";s:5:"width";i:1024;s:6:"height";i:683;s:9:"mime-type";s:10:"image/jpeg";}s:9:"thumbnail";a:4:{s:4:"file";s:37:"pexels-picjumbocom-196667-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:37:"pexels-picjumbocom-196667-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:9:"1536x1536";a:4:{s:4:"file";s:39:"pexels-picjumbocom-196667-1536x1024.jpg";s:5:"width";i:1536;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:9:"2048x2048";a:4:{s:4:"file";s:39:"pexels-picjumbocom-196667-2048x1366.jpg";s:5:"width";i:2048;s:6:"height";i:1366;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}s:14:"original_image";s:29:"pexels-picjumbocom-196667.jpg";}'),
(1343, 195, '_elementor_edit_mode', 'builder'),
(1344, 195, '_elementor_template_type', 'wp-page'),
(1345, 195, '_elementor_version', '3.3.0'),
(1346, 195, '_elementor_pro_version', '3.3.2'),
(1347, 195, '_wp_page_template', 'default'),
(1348, 195, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1349, 195, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit05.png","id":186,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"69","bottom":"69","left":"69","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]'),
(1350, 195, '_elementor_page_assets', 'a:0:{}'),
(1351, 195, '_elementor_css', 'a:6:{s:4:"time";i:1635934318;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1352, 196, '_elementor_edit_mode', 'builder'),
(1353, 196, '_elementor_template_type', 'wp-page'),
(1354, 196, '_elementor_version', '3.3.0'),
(1355, 196, '_elementor_pro_version', '3.3.2'),
(1356, 196, '_wp_page_template', 'default'),
(1357, 196, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1358, 196, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit05.png","id":186,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"69","bottom":"69","left":"69","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false}]'),
(1359, 196, '_elementor_page_assets', 'a:0:{}'),
(1360, 196, '_elementor_css', 'a:6:{s:4:"time";i:1635934318;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1361, 197, '_elementor_edit_mode', 'builder'),
(1362, 197, '_elementor_template_type', 'wp-page'),
(1363, 197, '_elementor_version', '3.3.0'),
(1364, 197, '_elementor_pro_version', '3.3.2'),
(1365, 197, '_wp_page_template', 'default'),
(1366, 197, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1367, 197, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-picjumbocom-196667-scaled.jpg","id":194,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit05.png","id":186,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"69","bottom":"69","left":"69","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"e6801fb","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"6ddf1d0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8d00000","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"width":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1368, 197, '_elementor_page_assets', 'a:0:{}'),
(1369, 197, '_elementor_css', 'a:6:{s:4:"time";i:1635934318;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1372, 198, '_elementor_edit_mode', 'builder'),
(1373, 198, '_elementor_template_type', 'wp-page'),
(1374, 198, '_elementor_version', '3.3.0'),
(1375, 198, '_elementor_pro_version', '3.3.2'),
(1376, 198, '_wp_page_template', 'default'),
(1377, 198, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1378, 198, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-picjumbocom-196667-scaled.jpg","id":194,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit05.png","id":186,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"69","bottom":"69","left":"69","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"e6801fb","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"6ddf1d0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8d00000","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"width":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1379, 198, '_elementor_page_assets', 'a:0:{}'),
(1380, 198, '_elementor_css', 'a:6:{s:4:"time";i:1635934527;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1381, 199, '_elementor_edit_mode', 'builder'),
(1382, 199, '_elementor_template_type', 'wp-page'),
(1383, 199, '_elementor_version', '3.3.0'),
(1384, 199, '_elementor_pro_version', '3.3.2'),
(1385, 199, '_wp_page_template', 'default'),
(1386, 199, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1387, 199, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-picjumbocom-196667-scaled.jpg","id":194,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit05.png","id":186,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"69","bottom":"69","left":"69","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"e6801fb","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"6ddf1d0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8d00000","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"width":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]');
INSERT INTO `wpui_postmeta` VALUES
(1388, 199, '_elementor_page_assets', 'a:0:{}'),
(1389, 199, '_elementor_css', 'a:6:{s:4:"time";i:1635934527;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1390, 200, '_elementor_edit_mode', 'builder'),
(1391, 200, '_elementor_template_type', 'wp-page'),
(1392, 200, '_elementor_version', '3.3.0'),
(1393, 200, '_elementor_pro_version', '3.3.2'),
(1394, 200, '_wp_page_template', 'default'),
(1395, 200, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1396, 200, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":59,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-picjumbocom-196667-scaled.jpg","id":194,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit05.png","id":186,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"69","bottom":"69","left":"69","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"e6801fb","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"6ddf1d0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8d00000","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"width":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1397, 200, '_elementor_page_assets', 'a:0:{}'),
(1398, 200, '_elementor_css', 'a:6:{s:4:"time";i:1635934527;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1401, 201, '_elementor_edit_mode', 'builder'),
(1402, 201, '_elementor_template_type', 'wp-page'),
(1403, 201, '_elementor_version', '3.3.0'),
(1404, 201, '_elementor_pro_version', '3.3.2'),
(1405, 201, '_wp_page_template', 'default'),
(1406, 201, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1407, 201, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":59,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-picjumbocom-196667-scaled.jpg","id":194,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit05.png","id":186,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"69","bottom":"69","left":"69","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"e6801fb","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"6ddf1d0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8d00000","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"width":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1408, 201, '_elementor_page_assets', 'a:0:{}'),
(1409, 201, '_elementor_css', 'a:6:{s:4:"time";i:1635935215;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1410, 202, '_elementor_edit_mode', 'builder'),
(1411, 202, '_elementor_template_type', 'wp-page'),
(1412, 202, '_elementor_version', '3.3.0'),
(1413, 202, '_elementor_pro_version', '3.3.2'),
(1414, 202, '_wp_page_template', 'default'),
(1415, 202, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1416, 202, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":59,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-picjumbocom-196667-scaled.jpg","id":194,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit05.png","id":186,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"69","bottom":"69","left":"69","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"e6801fb","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"6ddf1d0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8d00000","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"width":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1417, 202, '_elementor_page_assets', 'a:0:{}'),
(1418, 202, '_elementor_css', 'a:6:{s:4:"time";i:1635935215;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1419, 203, '_elementor_edit_mode', 'builder'),
(1420, 203, '_elementor_template_type', 'wp-page'),
(1421, 203, '_elementor_version', '3.3.0'),
(1422, 203, '_elementor_pro_version', '3.3.2'),
(1423, 203, '_wp_page_template', 'default'),
(1424, 203, '_elementor_page_settings', 'a:1:{s:10:"hide_title";s:3:"yes";}'),
(1425, 203, '_elementor_data', '[{"id":"d468860","elType":"section","settings":{"layout":"full_width","gap":"no","structure":"20","background_overlay_background":"classic","background_overlay_image":{"url":"","id":"","alt":"","source":"library"},"background_overlay_opacity":{"unit":"px","size":1,"sizes":[]},"background_overlay_color":"#633CDAA1","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-1.png","id":120,"alt":"","source":"library"},"background_position":"top left","background_attachment":"scroll","background_repeat":"no-repeat","background_size":"initial","background_color_b":"#E16584","background_bg_width":{"unit":"%","size":41,"sizes":[]},"shape_divider_top":"opacity-fan","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":59,"sizes":[]}},"elements":[{"id":"329056c","elType":"column","settings":{"_column_size":50,"_inline_size":39.298},"elements":[{"id":"91c0a08","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/Recurso-8.png","id":93,"alt":"","source":"library"},"_margin":{"unit":"px","top":"86","right":"86","bottom":"86","left":"86","isLinked":true},"_padding":{"unit":"px","top":"78","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"e988901","elType":"column","settings":{"_column_size":50,"_inline_size":60.702},"elements":[{"id":"0384f0d","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-picjumbocom-196667-scaled.jpg","id":194,"alt":"","source":"library"},"image_size":"full","_margin":{"unit":"px","top":"0","right":"0","bottom":"0","left":"0","isLinked":false},"_padding":{"unit":"px","top":"-7","right":"0","bottom":"0","left":"0","isLinked":false}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9b5bdee","elType":"section","settings":{"structure":"20","background_background":"slideshow","background_color":"#1FB5BE","background_slideshow_gallery":[{"id":108,"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/grunge-paint-background-scaled.jpg"}],"shape_divider_top":"opacity-tilt"},"elements":[{"id":"3b943cc","elType":"column","settings":{"_column_size":50,"_inline_size":53.333},"elements":[],"isInner":false},{"id":"a5b5e40","elType":"column","settings":{"_column_size":50,"_inline_size":46.581},"elements":[{"id":"d38aa5f","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-inv.png","id":107,"alt":"","source":"library"},"_margin":{"unit":"px","top":"101","right":"54","bottom":"101","left":"91","isLinked":false},"_padding":{"unit":"px","top":"47","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_scrolling":"yes","motion_fx_translateX_speed":{"unit":"px","size":4.8,"sizes":[]},"motion_fx_translateY_effect":"yes","motion_fx_translateY_direction":"negative"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"5928f0b","elType":"section","settings":{"structure":"30","background_background":"classic","background_color":"#C35692","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-aleksandar-pasaric-1527934-scaled.jpg","id":133,"alt":"","source":"library"},"shape_divider_top":"mountains"},"elements":[{"id":"4bad9e3","elType":"column","settings":{"_column_size":33,"_inline_size":41.664},"elements":[{"id":"bde6c68","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit-04.png","id":134,"alt":"","source":"library"},"_margin":{"unit":"px","top":"169","right":"0","bottom":"0","left":"0","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":2.2,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"33c1ac4","elType":"column","settings":{"_column_size":33,"_inline_size":17.739},"elements":[],"isInner":false},{"id":"908ce9d","elType":"column","settings":{"_column_size":33,"_inline_size":39.929},"elements":[{"id":"99a712e","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/mujer-scaled.jpg","id":138,"alt":"","source":"library"},"image_size":"1536x1536","_margin":{"unit":"px","top":"36","right":"36","bottom":"36","left":"36","isLinked":true},"opacity_hover":{"unit":"px","size":0.64,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"4392aa6","elType":"section","settings":{"background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/fondo01.jpg","id":147,"alt":"","source":"library"},"shape_divider_top":"wave-brush","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":62,"sizes":[]}},"elements":[{"id":"868e394","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"db409fd","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/letras.png","id":149,"alt":"","source":"library"},"_margin":{"unit":"px","top":"164","right":"164","bottom":"164","left":"164","isLinked":true},"motion_fx_motion_fx_scrolling":"yes","motion_fx_scale_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"6143ddc","elType":"section","settings":{"structure":"21","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojas02.jpg","id":177,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_width":{"unit":"%","size":100,"sizes":[]},"shape_divider_top_height":{"unit":"px","size":44,"sizes":[]}},"elements":[{"id":"9a9bb4f","elType":"column","settings":{"_column_size":33,"_inline_size":null},"elements":[{"id":"349581c","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/logo-web.png","id":44,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"47","bottom":"47","left":"47","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.1,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a2f28ab","elType":"column","settings":{"_column_size":66,"_inline_size":null},"elements":[{"id":"3c68461","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/tit05.png","id":186,"alt":"","source":"library"},"_margin":{"unit":"px","top":"121","right":"69","bottom":"69","left":"69","isLinked":false},"motion_fx_motion_fx_mouse":"yes","motion_fx_mouseTrack_effect":"yes","motion_fx_mouseTrack_speed":{"unit":"px","size":0.5,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false},{"id":"9937ffc","elType":"section","settings":{"structure":"40","background_background":"classic","background_image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/hojascolor.jpg","id":161,"alt":"","source":"library"},"shape_divider_top":"mountains","shape_divider_top_height":{"unit":"px","size":26,"sizes":[]},"margin":{"unit":"px","top":"40","right":0,"bottom":"0","left":0,"isLinked":false},"padding":{"unit":"px","top":"49","right":"49","bottom":"49","left":"49","isLinked":true},"background_hover_transition":{"unit":"px","size":1,"sizes":[]}},"elements":[{"id":"e4637ad","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"39515f9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-egecan-kose-7459072-scaled.jpg","id":131,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.78,"sizes":[]},"opacity_hover":{"unit":"px","size":1,"sizes":[]},"motion_fx_mouseTrack_effect":"yes"},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"a01389b","elType":"column","settings":{"_column_size":25,"_inline_size":null},"elements":[{"id":"1a201a9","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura02.jpeg","id":154,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.53,"sizes":[]},"opacity_hover":{"unit":"px","size":0.8,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"7e907a7","elType":"column","settings":{"_column_size":25,"_inline_size":34.823},"elements":[{"id":"e692a03","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/laura03.jpeg","id":155,"alt":"","source":"library"},"opacity":{"unit":"px","size":0.61,"sizes":[]},"opacity_hover":{"unit":"px","size":0.82,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false},{"id":"8d416ea","elType":"column","settings":{"_column_size":25,"_inline_size":15.133},"elements":[],"isInner":false}],"isInner":false},{"id":"e6801fb","elType":"section","settings":{"layout":"full_width","gap":"no"},"elements":[{"id":"6ddf1d0","elType":"column","settings":{"_column_size":100,"_inline_size":null},"elements":[{"id":"8d00000","elType":"widget","settings":{"image":{"url":"http:\\/\\/stylosoul.grupogalileo.com.co\\/wp-content\\/uploads\\/2021\\/11\\/pexels-eberhard-grossgasteiger-1292115-scaled.jpg","id":132,"alt":"","source":"library"},"width":{"unit":"%","size":100,"sizes":[]}},"elements":[],"widgetType":"image"}],"isInner":false}],"isInner":false}]'),
(1426, 203, '_elementor_page_assets', 'a:0:{}'),
(1427, 203, '_elementor_css', 'a:6:{s:4:"time";i:1635935215;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}'),
(1428, 12, '_elementor_controls_usage', 'a:3:{s:5:"image";a:3:{s:5:"count";i:12;s:15:"control_percent";i:1;s:8:"controls";a:3:{s:7:"content";a:1:{s:13:"section_image";a:2:{s:5:"image";i:12;s:10:"image_size";i:2;}}s:8:"advanced";a:2:{s:14:"_section_style";a:2:{s:7:"_margin";i:8;s:8:"_padding";i:3;}s:15:"section_effects";a:9:{s:29:"motion_fx_motion_fx_scrolling";i:3;s:27:"motion_fx_translateX_effect";i:1;s:26:"motion_fx_translateX_speed";i:1;s:27:"motion_fx_translateY_effect";i:1;s:30:"motion_fx_translateY_direction";i:1;s:25:"motion_fx_motion_fx_mouse";i:3;s:27:"motion_fx_mouseTrack_effect";i:4;s:26:"motion_fx_mouseTrack_speed";i:3;s:22:"motion_fx_scale_effect";i:1;}}s:5:"style";a:1:{s:19:"section_style_image";a:3:{s:13:"opacity_hover";i:4;s:7:"opacity";i:3;s:5:"width";i:1;}}}}s:6:"column";a:3:{s:5:"count";i:15;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:15;}}}}s:7:"section";a:3:{s:5:"count";i:7;s:15:"control_percent";i:0;s:8:"controls";a:3:{s:6:"layout";a:2:{s:14:"section_layout";a:2:{s:6:"layout";i:2;s:3:"gap";i:2;}s:17:"section_structure";a:1:{s:9:"structure";i:5;}}s:5:"style";a:3:{s:26:"section_background_overlay";a:4:{s:29:"background_overlay_background";i:1;s:24:"background_overlay_image";i:1;s:26:"background_overlay_opacity";i:1;s:24:"background_overlay_color";i:1;}s:18:"section_background";a:11:{s:21:"background_background";i:6;s:16:"background_image";i:5;s:19:"background_position";i:1;s:21:"background_attachment";i:1;s:17:"background_repeat";i:1;s:15:"background_size";i:1;s:18:"background_color_b";i:1;s:19:"background_bg_width";i:1;s:16:"background_color";i:2;s:28:"background_slideshow_gallery";i:1;s:27:"background_hover_transition";i:1;}s:21:"section_shape_divider";a:3:{s:17:"shape_divider_top";i:6;s:23:"shape_divider_top_width";i:3;s:24:"shape_divider_top_height";i:4;}}s:8:"advanced";a:1:{s:16:"section_advanced";a:2:{s:6:"margin";i:1;s:7:"padding";i:1;}}}}}'),
(1429, 12, '_elementor_css', 'a:6:{s:4:"time";i:1635935569;s:5:"fonts";a:0:{}s:5:"icons";a:0:{}s:20:"dynamic_elements_ids";a:0:{}s:6:"status";s:4:"file";i:0;s:0:"";}');

-- --------------------------------------------------------

--
-- Table structure for table `wpui_posts`
--

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

--
-- Dumping data for table `wpui_posts`
--

INSERT INTO `wpui_posts` VALUES
(1, 1, '2021-11-02 09:31:10', '2021-11-02 09:31:10', '<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2021-11-02 09:31:10', '2021-11-02 09:31:10', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=1', 0, 'post', '', 1),
(2, 1, '2021-11-02 09:31:10', '2021-11-02 09:31:10', '<!-- wp:paragraph -->\n<p>This is an example page. It''s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class="wp-block-quote"><p>Hi there! I''m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin'' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class="wp-block-quote"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href="http://stylosoul.grupogalileo.com.co/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->', 'Sample Page', '', 'publish', 'closed', 'open', '', 'sample-page', '', '', '2021-11-02 09:31:10', '2021-11-02 09:31:10', '', 0, 'http://stylosoul.grupogalileo.com.co/?page_id=2', 0, 'page', '', 0),
(3, 1, '2021-11-02 09:31:10', '2021-11-02 09:31:10', '<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>Our website address is: http://stylosoul.grupogalileo.com.co.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class="privacy-policy-tutorial">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->', 'Privacy Policy', '', 'draft', 'closed', 'open', '', 'privacy-policy', '', '', '2021-11-02 09:31:10', '2021-11-02 09:31:10', '', 0, 'http://stylosoul.grupogalileo.com.co/?page_id=3', 0, 'page', '', 0),
(4, 1, '2021-11-02 09:32:23', '0000-00-00 00:00:00', '', 'Borrador automático', '', 'auto-draft', 'open', 'open', '', '', '', '', '2021-11-02 09:32:23', '0000-00-00 00:00:00', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=4', 0, 'post', '', 0),
(6, 1, '2021-11-02 09:33:41', '2021-11-02 09:33:41', '', 'Kit por defecto', '', 'publish', 'closed', 'closed', '', 'kit-por-defecto', '', '', '2021-11-02 09:33:41', '2021-11-02 09:33:41', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=6', 0, 'elementor_library', '', 0),
(8, 1, '2021-11-02 09:36:16', '2021-11-02 09:36:16', '<a href="https://www.instagram.com/stylo.mode/" target="_blank" rel="noopener">\n						Instagram\n											</a>', 'Elementor Header #8', '', 'publish', 'closed', 'closed', '', 'elementor-header-8', '', '', '2021-11-03 09:45:12', '2021-11-03 09:45:12', '', 0, 'http://stylosoul.grupogalileo.com.co/?post_type=elementor_library&#038;p=8', 0, 'elementor_library', '', 0),
(9, 1, '2021-11-02 09:36:16', '2021-11-02 09:36:16', '', 'Elementor Header #8', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2021-11-02 09:36:16', '2021-11-02 09:36:16', '', 8, 'http://stylosoul.grupogalileo.com.co/?p=9', 0, 'revision', '', 0),
(10, 1, '2021-11-02 09:36:58', '2021-11-02 09:36:58', '', 'placeholder.png', '', 'inherit', 'open', 'closed', '', 'placeholder-png', '', '', '2021-11-02 09:36:58', '2021-11-02 09:36:58', '', 0, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/placeholder.png', 0, 'attachment', 'image/png', 0),
(11, 1, '2021-11-02 09:37:12', '2021-11-02 09:37:12', '<a target="_blank" rel="noopener">\n						Twitter\n											</a>\n					<a target="_blank" rel="noopener">\n						Behance\n											</a>\n					<a target="_blank" rel="noopener">\n						Dribbble\n											</a>\n					<a target="_blank" rel="noopener">\n						Instagram\n											</a>', 'Elementor Header #8', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2021-11-02 09:37:12', '2021-11-02 09:37:12', '', 8, 'http://stylosoul.grupogalileo.com.co/?p=11', 0, 'revision', '', 0),
(12, 1, '2021-11-02 09:38:07', '2021-11-02 09:38:07', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-2048x1366.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="185" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-300x69.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-768x178.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="800" height="534" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'publish', 'closed', 'closed', '', 'home', '', '', '2021-11-03 10:32:36', '2021-11-03 10:32:36', '', 0, 'http://stylosoul.grupogalileo.com.co/?page_id=12', 0, 'page', '', 0),
(13, 1, '2021-11-02 09:38:07', '2021-11-02 09:38:07', '', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 09:38:07', '2021-11-02 09:38:07', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=13', 0, 'revision', '', 0),
(14, 1, '2021-11-02 09:39:18', '2021-11-02 09:39:18', '', 'Stylo Tools', '', 'publish', 'closed', 'closed', '', 'stylo-tools', '', '', '2021-11-02 09:39:18', '2021-11-02 09:39:18', '', 0, 'http://stylosoul.grupogalileo.com.co/?page_id=14', 0, 'page', '', 0),
(15, 1, '2021-11-02 09:39:18', '2021-11-02 09:39:18', '', 'Stylo Tools', '', 'inherit', 'closed', 'closed', '', '14-revision-v1', '', '', '2021-11-02 09:39:18', '2021-11-02 09:39:18', '', 14, 'http://stylosoul.grupogalileo.com.co/?p=15', 0, 'revision', '', 0),
(16, 1, '2021-11-02 09:40:13', '2021-11-02 09:40:13', '', 'Imagen', '', 'publish', 'closed', 'closed', '', 'imagen', '', '', '2021-11-02 09:40:13', '2021-11-02 09:40:13', '', 0, 'http://stylosoul.grupogalileo.com.co/?page_id=16', 0, 'page', '', 0),
(17, 1, '2021-11-02 09:40:13', '2021-11-02 09:40:13', '', 'Imagen', '', 'inherit', 'closed', 'closed', '', '16-revision-v1', '', '', '2021-11-02 09:40:13', '2021-11-02 09:40:13', '', 16, 'http://stylosoul.grupogalileo.com.co/?p=17', 0, 'revision', '', 0),
(18, 1, '2021-11-02 09:40:43', '2021-11-02 09:40:43', '', 'Esencia', '', 'publish', 'closed', 'closed', '', 'esencia', '', '', '2021-11-02 09:40:43', '2021-11-02 09:40:43', '', 0, 'http://stylosoul.grupogalileo.com.co/?page_id=18', 0, 'page', '', 0),
(19, 1, '2021-11-02 09:40:43', '2021-11-02 09:40:43', '', 'Esencia', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2021-11-02 09:40:43', '2021-11-02 09:40:43', '', 18, 'http://stylosoul.grupogalileo.com.co/?p=19', 0, 'revision', '', 0),
(20, 1, '2021-11-02 09:41:09', '2021-11-02 09:41:09', '', 'Inspiración', '', 'publish', 'closed', 'closed', '', 'inspiracion', '', '', '2021-11-02 09:41:09', '2021-11-02 09:41:09', '', 0, 'http://stylosoul.grupogalileo.com.co/?page_id=20', 0, 'page', '', 0),
(21, 1, '2021-11-02 09:41:09', '2021-11-02 09:41:09', '', 'Inspiración', '', 'inherit', 'closed', 'closed', '', '20-revision-v1', '', '', '2021-11-02 09:41:09', '2021-11-02 09:41:09', '', 20, 'http://stylosoul.grupogalileo.com.co/?p=21', 0, 'revision', '', 0),
(22, 1, '2021-11-02 09:41:41', '2021-11-02 09:41:41', '', 'Comunidad', '', 'publish', 'closed', 'closed', '', 'comunidad', '', '', '2021-11-02 09:41:41', '2021-11-02 09:41:41', '', 0, 'http://stylosoul.grupogalileo.com.co/?page_id=22', 0, 'page', '', 0),
(23, 1, '2021-11-02 09:41:41', '2021-11-02 09:41:41', '', 'Comunidad', '', 'inherit', 'closed', 'closed', '', '22-revision-v1', '', '', '2021-11-02 09:41:41', '2021-11-02 09:41:41', '', 22, 'http://stylosoul.grupogalileo.com.co/?p=23', 0, 'revision', '', 0),
(24, 1, '2021-11-02 09:42:17', '0000-00-00 00:00:00', '', 'Borrador automático', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2021-11-02 09:42:17', '0000-00-00 00:00:00', '', 0, 'http://stylosoul.grupogalileo.com.co/?page_id=24', 0, 'page', '', 0),
(25, 1, '2021-11-02 09:45:57', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2021-11-02 09:45:57', '0000-00-00 00:00:00', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=25', 1, 'nav_menu_item', '', 0),
(26, 1, '2021-11-02 09:45:58', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2021-11-02 09:45:58', '0000-00-00 00:00:00', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=26', 1, 'nav_menu_item', '', 0),
(27, 1, '2021-11-02 09:45:59', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2021-11-02 09:45:59', '0000-00-00 00:00:00', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=27', 1, 'nav_menu_item', '', 0),
(28, 1, '2021-11-02 09:46:00', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2021-11-02 09:46:00', '0000-00-00 00:00:00', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=28', 1, 'nav_menu_item', '', 0),
(29, 1, '2021-11-02 09:46:01', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2021-11-02 09:46:01', '0000-00-00 00:00:00', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=29', 1, 'nav_menu_item', '', 0),
(30, 1, '2021-11-02 09:46:01', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2021-11-02 09:46:01', '0000-00-00 00:00:00', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=30', 1, 'nav_menu_item', '', 0),
(31, 1, '2021-11-02 09:46:20', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2021-11-02 09:46:20', '0000-00-00 00:00:00', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=31', 1, 'nav_menu_item', '', 0),
(32, 1, '2021-11-02 09:46:21', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2021-11-02 09:46:21', '0000-00-00 00:00:00', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=32', 1, 'nav_menu_item', '', 0),
(33, 1, '2021-11-02 09:46:21', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2021-11-02 09:46:21', '0000-00-00 00:00:00', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=33', 1, 'nav_menu_item', '', 0),
(34, 1, '2021-11-02 09:46:22', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2021-11-02 09:46:22', '0000-00-00 00:00:00', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=34', 1, 'nav_menu_item', '', 0),
(35, 1, '2021-11-02 09:46:23', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2021-11-02 09:46:23', '0000-00-00 00:00:00', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=35', 1, 'nav_menu_item', '', 0),
(36, 1, '2021-11-02 09:46:24', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2021-11-02 09:46:24', '0000-00-00 00:00:00', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=36', 1, 'nav_menu_item', '', 0),
(37, 1, '2021-11-02 09:48:12', '2021-11-02 09:47:52', ' ', '', '', 'publish', 'closed', 'closed', '', '37', '', '', '2021-11-02 09:48:12', '2021-11-02 09:48:12', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=37', 1, 'nav_menu_item', '', 0),
(38, 1, '2021-11-02 09:48:12', '2021-11-02 09:47:52', ' ', '', '', 'publish', 'closed', 'closed', '', '38', '', '', '2021-11-02 09:48:12', '2021-11-02 09:48:12', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=38', 2, 'nav_menu_item', '', 0),
(39, 1, '2021-11-02 09:48:12', '2021-11-02 09:47:52', ' ', '', '', 'publish', 'closed', 'closed', '', '39', '', '', '2021-11-02 09:48:12', '2021-11-02 09:48:12', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=39', 3, 'nav_menu_item', '', 0),
(40, 1, '2021-11-02 09:48:12', '2021-11-02 09:47:52', ' ', '', '', 'publish', 'closed', 'closed', '', '40', '', '', '2021-11-02 09:48:12', '2021-11-02 09:48:12', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=40', 4, 'nav_menu_item', '', 0),
(41, 1, '2021-11-02 09:48:12', '2021-11-02 09:47:52', ' ', '', '', 'publish', 'closed', 'closed', '', '41', '', '', '2021-11-02 09:48:12', '2021-11-02 09:48:12', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=41', 5, 'nav_menu_item', '', 0),
(42, 1, '2021-11-02 09:48:12', '2021-11-02 09:47:52', ' ', '', '', 'publish', 'closed', 'closed', '', '42', '', '', '2021-11-02 09:48:12', '2021-11-02 09:48:12', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=42', 6, 'nav_menu_item', '', 0),
(43, 1, '2021-11-02 09:48:12', '2021-11-02 09:48:12', '', 'Contacto', '', 'publish', 'closed', 'closed', '', 'contacto', '', '', '2021-11-02 09:48:12', '2021-11-02 09:48:12', '', 0, 'http://stylosoul.grupogalileo.com.co/?p=43', 7, 'nav_menu_item', '', 0),
(44, 1, '2021-11-02 09:48:40', '2021-11-02 09:48:40', '', 'logo web', '', 'inherit', 'open', 'closed', '', 'logo-web', '', '', '2021-11-02 09:48:40', '2021-11-02 09:48:40', '', 0, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png', 0, 'attachment', 'image/png', 0),
(45, 1, '2021-11-02 09:48:51', '2021-11-02 09:48:51', '{\n    "hello-elementor::custom_logo": {\n        "value": 44,\n        "type": "theme_mod",\n        "user_id": 1,\n        "date_modified_gmt": "2021-11-02 09:48:51"\n    }\n}', '', '', 'trash', 'closed', 'closed', '', 'a05dc99b-004d-477c-b7cc-adabb19e1c74', '', '', '2021-11-02 09:48:51', '2021-11-02 09:48:51', '', 0, 'http://stylosoul.grupogalileo.com.co/2021/11/02/a05dc99b-004d-477c-b7cc-adabb19e1c74/', 0, 'customize_changeset', '', 0),
(46, 1, '2021-11-02 09:49:55', '2021-11-02 09:49:55', '', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 09:49:55', '2021-11-02 09:49:55', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=46', 0, 'revision', '', 0),
(47, 1, '2021-11-02 09:49:55', '2021-11-02 09:49:55', '', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 09:49:55', '2021-11-02 09:49:55', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=47', 0, 'revision', '', 0),
(48, 1, '2021-11-02 09:49:55', '2021-11-02 09:49:55', '', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 09:49:55', '2021-11-02 09:49:55', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=48', 0, 'revision', '', 0),
(49, 1, '2021-11-02 09:54:21', '2021-11-02 09:54:21', '', 'modelo 1', '', 'inherit', 'open', 'closed', '', 'modelo-1', '', '', '2021-11-02 09:54:21', '2021-11-02 09:54:21', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(50, 1, '2021-11-02 09:54:27', '2021-11-02 09:54:27', '', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 09:54:27', '2021-11-02 09:54:27', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=50', 0, 'revision', '', 0),
(51, 1, '2021-11-02 09:54:27', '2021-11-02 09:54:27', '', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 09:54:27', '2021-11-02 09:54:27', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=51', 0, 'revision', '', 0),
(52, 1, '2021-11-02 09:54:28', '2021-11-02 09:54:28', '<img width="800" height="510" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 09:54:28', '2021-11-02 09:54:28', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=52', 0, 'revision', '', 0),
(53, 1, '2021-11-02 09:56:26', '2021-11-02 09:56:26', '<a target="_blank" rel="noopener">\n						Twitter\n											</a>\n					<a target="_blank" rel="noopener">\n						Behance\n											</a>\n					<a target="_blank" rel="noopener">\n						Dribbble\n											</a>\n					<a target="_blank" rel="noopener">\n						Instagram\n											</a>', 'Elementor Header #8', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2021-11-02 09:56:26', '2021-11-02 09:56:26', '', 8, 'http://stylosoul.grupogalileo.com.co/?p=53', 0, 'revision', '', 0),
(54, 1, '2021-11-02 09:56:52', '2021-11-02 09:56:52', '<a href="https://www.instagram.com/stylo.mode/" target="_blank" rel="noopener">\n						Instagram\n											</a>', 'Elementor Header #8', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2021-11-02 09:56:52', '2021-11-02 09:56:52', '', 8, 'http://stylosoul.grupogalileo.com.co/?p=54', 0, 'revision', '', 0),
(55, 1, '2021-11-02 09:57:20', '2021-11-02 09:57:20', '<a href="https://www.instagram.com/stylo.mode/" target="_blank" rel="noopener">\n						Instagram\n											</a>', 'Elementor Header #8', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2021-11-02 09:57:20', '2021-11-02 09:57:20', '', 8, 'http://stylosoul.grupogalileo.com.co/?p=55', 0, 'revision', '', 0),
(56, 1, '2021-11-02 09:58:20', '2021-11-02 09:58:20', '<img width="800" height="510" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 09:58:20', '2021-11-02 09:58:20', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=56', 0, 'revision', '', 0),
(57, 1, '2021-11-02 09:58:20', '2021-11-02 09:58:20', '<img width="800" height="510" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 09:58:20', '2021-11-02 09:58:20', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=57', 0, 'revision', '', 0),
(58, 1, '2021-11-02 09:58:20', '2021-11-02 09:58:20', '<img width="800" height="510" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 09:58:20', '2021-11-02 09:58:20', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=58', 0, 'revision', '', 0),
(59, 1, '2021-11-02 09:59:15', '2021-11-02 09:59:15', '<img width="800" height="510" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 09:59:15', '2021-11-02 09:59:15', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=59', 0, 'revision', '', 0),
(60, 1, '2021-11-02 09:59:15', '2021-11-02 09:59:15', '<img width="800" height="510" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 09:59:15', '2021-11-02 09:59:15', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=60', 0, 'revision', '', 0),
(61, 1, '2021-11-02 09:59:16', '2021-11-02 09:59:16', '<img width="800" height="510" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 09:59:16', '2021-11-02 09:59:16', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=61', 0, 'revision', '', 0),
(62, 1, '2021-11-02 09:59:49', '2021-11-02 09:59:49', '<a href="https://www.instagram.com/stylo.mode/" target="_blank" rel="noopener">\n						Instagram\n											</a>', 'Elementor Header #8', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2021-11-02 09:59:49', '2021-11-02 09:59:49', '', 8, 'http://stylosoul.grupogalileo.com.co/?p=62', 0, 'revision', '', 0),
(63, 1, '2021-11-02 10:00:14', '2021-11-02 10:00:14', '<a href="https://www.instagram.com/stylo.mode/" target="_blank" rel="noopener">\n						Instagram\n											</a>', 'Elementor Header #8', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2021-11-02 10:00:14', '2021-11-02 10:00:14', '', 8, 'http://stylosoul.grupogalileo.com.co/?p=63', 0, 'revision', '', 0),
(64, 1, '2021-11-02 10:01:25', '2021-11-02 10:01:25', '<img width="800" height="510" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 10:01:25', '2021-11-02 10:01:25', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=64', 0, 'revision', '', 0),
(65, 1, '2021-11-02 10:01:25', '2021-11-02 10:01:25', '<img width="800" height="510" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 10:01:25', '2021-11-02 10:01:25', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=65', 0, 'revision', '', 0),
(66, 1, '2021-11-02 10:01:25', '2021-11-02 10:01:25', '<img width="800" height="510" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 10:01:25', '2021-11-02 10:01:25', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=66', 0, 'revision', '', 0),
(67, 1, '2021-11-02 10:03:45', '2021-11-02 10:03:45', '<img width="800" height="510" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 10:03:45', '2021-11-02 10:03:45', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=67', 0, 'revision', '', 0),
(68, 1, '2021-11-02 10:03:45', '2021-11-02 10:03:45', '<img width="800" height="510" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 10:03:45', '2021-11-02 10:03:45', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=68', 0, 'revision', '', 0),
(69, 1, '2021-11-02 10:03:45', '2021-11-02 10:03:45', '<img src="http://stylosoul.grupogalileo.com.co/wp-content/plugins/elementor/assets/images/placeholder.png" title="" alt="" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 10:03:45', '2021-11-02 10:03:45', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=69', 0, 'revision', '', 0),
(71, 1, '2021-11-02 10:11:04', '2021-11-02 10:11:04', '', 'simbolo01', '', 'inherit', 'open', 'closed', '', 'simbolo01', '', '', '2021-11-02 10:11:04', '2021-11-02 10:11:04', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/simbolo01.png', 0, 'attachment', 'image/png', 0),
(72, 1, '2021-11-02 10:13:42', '2021-11-02 10:13:42', '', 'modeloimagen', '', 'inherit', 'open', 'closed', '', 'modeloimagen', '', '', '2021-11-02 10:13:42', '2021-11-02 10:13:42', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg', 0, 'attachment', 'image/jpeg', 0),
(73, 1, '2021-11-02 10:14:31', '2021-11-02 10:14:31', '<img src="http://stylosoul.grupogalileo.com.co/wp-content/plugins/elementor/assets/images/placeholder.png" title="" alt="" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 10:14:31', '2021-11-02 10:14:31', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=73', 0, 'revision', '', 0),
(74, 1, '2021-11-02 10:14:31', '2021-11-02 10:14:31', '<img src="http://stylosoul.grupogalileo.com.co/wp-content/plugins/elementor/assets/images/placeholder.png" title="" alt="" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 10:14:31', '2021-11-02 10:14:31', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=74', 0, 'revision', '', 0),
(75, 1, '2021-11-02 10:14:31', '2021-11-02 10:14:31', '<img width="800" height="510" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1024x653.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1024x653.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-768x490.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1536x979.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg 1600w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 10:14:31', '2021-11-02 10:14:31', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=75', 0, 'revision', '', 0),
(76, 1, '2021-11-02 10:28:03', '2021-11-02 10:28:03', '<a href="https://www.instagram.com/stylo.mode/" target="_blank" rel="noopener">\n						Instagram\n											</a>', 'Elementor Header #8', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2021-11-02 10:28:03', '2021-11-02 10:28:03', '', 8, 'http://stylosoul.grupogalileo.com.co/?p=76', 0, 'revision', '', 0),
(77, 1, '2021-11-02 10:31:58', '2021-11-02 10:31:58', '<img width="800" height="510" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1024x653.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1024x653.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-768x490.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1536x979.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg 1600w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 10:31:58', '2021-11-02 10:31:58', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=77', 0, 'revision', '', 0),
(78, 1, '2021-11-02 10:31:58', '2021-11-02 10:31:58', '<img width="800" height="510" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1024x653.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1024x653.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-768x490.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1536x979.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg 1600w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 10:31:58', '2021-11-02 10:31:58', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=78', 0, 'revision', '', 0),
(79, 1, '2021-11-02 10:31:58', '2021-11-02 10:31:58', '<img width="1600" height="1020" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg 1600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1024x653.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-768x490.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1536x979.jpg 1536w" sizes="(max-width: 1600px) 100vw, 1600px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 10:31:58', '2021-11-02 10:31:58', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=79', 0, 'revision', '', 0),
(80, 1, '2021-11-02 10:32:18', '2021-11-02 10:32:18', '<img width="1600" height="1020" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg 1600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1024x653.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-768x490.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1536x979.jpg 1536w" sizes="(max-width: 1600px) 100vw, 1600px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 10:32:18', '2021-11-02 10:32:18', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=80', 0, 'revision', '', 0),
(81, 1, '2021-11-02 10:32:18', '2021-11-02 10:32:18', '<img width="1600" height="1020" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg 1600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1024x653.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-768x490.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1536x979.jpg 1536w" sizes="(max-width: 1600px) 100vw, 1600px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 10:32:18', '2021-11-02 10:32:18', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=81', 0, 'revision', '', 0),
(82, 1, '2021-11-02 10:32:18', '2021-11-02 10:32:18', '<img width="1600" height="1020" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg 1600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1024x653.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-768x490.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1536x979.jpg 1536w" sizes="(max-width: 1600px) 100vw, 1600px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 10:32:18', '2021-11-02 10:32:18', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=82', 0, 'revision', '', 0),
(83, 1, '2021-11-02 12:26:30', '2021-11-02 12:26:30', '', 'seaweed-seamless-vector-pattern-underwater-600w-1967583085', '', 'inherit', 'open', 'closed', '', 'seaweed-seamless-vector-pattern-underwater-600w-1967583085', '', '', '2021-11-02 12:26:30', '2021-11-02 12:26:30', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/seaweed-seamless-vector-pattern-underwater-600w-1967583085.webp', 0, 'attachment', 'image/webp', 0),
(85, 1, '2021-11-02 12:31:16', '2021-11-02 12:31:16', '', 'fondo', '', 'inherit', 'open', 'closed', '', 'fondo', '', '', '2021-11-02 12:31:16', '2021-11-02 12:31:16', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/fondo.jpg', 0, 'attachment', 'image/jpeg', 0),
(86, 1, '2021-11-02 12:32:00', '2021-11-02 12:32:00', '<img width="1600" height="1020" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg 1600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1024x653.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-768x490.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1536x979.jpg 1536w" sizes="(max-width: 1600px) 100vw, 1600px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 12:32:00', '2021-11-02 12:32:00', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=86', 0, 'revision', '', 0),
(87, 1, '2021-11-02 12:32:00', '2021-11-02 12:32:00', '<img width="1600" height="1020" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen.jpg 1600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1024x653.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-768x490.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modeloimagen-1536x979.jpg 1536w" sizes="(max-width: 1600px) 100vw, 1600px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 12:32:00', '2021-11-02 12:32:00', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=87', 0, 'revision', '', 0),
(88, 1, '2021-11-02 12:32:00', '2021-11-02 12:32:00', '<img width="800" height="1015" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/simbolo01.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/simbolo01.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/simbolo01-236x300.png 236w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/simbolo01-768x974.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 12:32:00', '2021-11-02 12:32:00', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=88', 0, 'revision', '', 0),
(89, 1, '2021-11-02 12:36:53', '2021-11-02 12:36:53', '', 'tit2', '', 'inherit', 'open', 'closed', '', 'tit2', '', '', '2021-11-02 12:36:53', '2021-11-02 12:36:53', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2.png', 0, 'attachment', 'image/png', 0),
(90, 1, '2021-11-02 12:37:12', '2021-11-02 12:37:12', '<img width="800" height="1015" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/simbolo01.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/simbolo01.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/simbolo01-236x300.png 236w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/simbolo01-768x974.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 12:37:12', '2021-11-02 12:37:12', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=90', 0, 'revision', '', 0),
(91, 1, '2021-11-02 12:37:12', '2021-11-02 12:37:12', '<img width="800" height="1015" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/simbolo01.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/simbolo01.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/simbolo01-236x300.png 236w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/simbolo01-768x974.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 12:37:12', '2021-11-02 12:37:12', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=91', 0, 'revision', '', 0),
(92, 1, '2021-11-02 12:37:12', '2021-11-02 12:37:12', '<img width="800" height="513" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1024x656.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1024x656.png 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-300x192.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-768x492.png 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1536x984.png 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2.png 1600w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 12:37:12', '2021-11-02 12:37:12', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=92', 0, 'revision', '', 0),
(93, 1, '2021-11-02 12:59:21', '2021-11-02 12:59:21', '', 'Recurso 8', '', 'inherit', 'open', 'closed', '', 'recurso-8', '', '', '2021-11-02 12:59:21', '2021-11-02 12:59:21', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png', 0, 'attachment', 'image/png', 0),
(94, 1, '2021-11-02 13:00:00', '2021-11-02 13:00:00', '<img width="800" height="513" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1024x656.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1024x656.png 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-300x192.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-768x492.png 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1536x984.png 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2.png 1600w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 13:00:00', '2021-11-02 13:00:00', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=94', 0, 'revision', '', 0),
(95, 1, '2021-11-02 13:00:00', '2021-11-02 13:00:00', '<img width="800" height="513" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1024x656.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1024x656.png 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-300x192.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-768x492.png 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1536x984.png 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2.png 1600w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 13:00:00', '2021-11-02 13:00:00', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=95', 0, 'revision', '', 0),
(96, 1, '2021-11-02 13:00:00', '2021-11-02 13:00:00', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="513" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1024x656.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1024x656.png 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-300x192.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-768x492.png 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1536x984.png 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2.png 1600w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 13:00:00', '2021-11-02 13:00:00', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=96', 0, 'revision', '', 0);
INSERT INTO `wpui_posts` VALUES
(97, 1, '2021-11-02 18:43:30', '2021-11-02 18:43:30', '<a href="https://www.instagram.com/stylo.mode/" target="_blank" rel="noopener">\n						Instagram\n											</a>', 'Elementor Header #8', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2021-11-02 18:43:30', '2021-11-02 18:43:30', '', 8, 'http://stylosoul.grupogalileo.com.co/?p=97', 0, 'revision', '', 0),
(98, 1, '2021-11-02 18:44:39', '2021-11-02 18:44:39', '<a href="https://www.instagram.com/stylo.mode/" target="_blank" rel="noopener">\n						Instagram\n											</a>', 'Elementor Header #8', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2021-11-02 18:44:39', '2021-11-02 18:44:39', '', 8, 'http://stylosoul.grupogalileo.com.co/?p=98', 0, 'revision', '', 0),
(101, 1, '2021-11-02 18:51:54', '2021-11-02 18:51:54', '<a href="https://www.instagram.com/stylo.mode/" target="_blank" rel="noopener">\n						Instagram\n											</a>', 'Elementor Header #8', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2021-11-02 18:51:54', '2021-11-02 18:51:54', '', 8, 'http://stylosoul.grupogalileo.com.co/?p=101', 0, 'revision', '', 0),
(102, 1, '2021-11-02 18:52:59', '2021-11-02 18:52:59', '<a href="https://www.instagram.com/stylo.mode/" target="_blank" rel="noopener">\n						Instagram\n											</a>', 'Elementor Header #8', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2021-11-02 18:52:59', '2021-11-02 18:52:59', '', 8, 'http://stylosoul.grupogalileo.com.co/?p=102', 0, 'revision', '', 0),
(103, 1, '2021-11-02 22:11:21', '2021-11-02 22:11:21', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="513" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1024x656.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1024x656.png 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-300x192.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-768x492.png 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1536x984.png 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2.png 1600w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 22:11:21', '2021-11-02 22:11:21', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=103', 0, 'revision', '', 0),
(104, 1, '2021-11-02 22:11:21', '2021-11-02 22:11:21', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="513" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1024x656.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1024x656.png 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-300x192.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-768x492.png 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2-1536x984.png 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit2.png 1600w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 22:11:21', '2021-11-02 22:11:21', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=104', 0, 'revision', '', 0),
(105, 1, '2021-11-02 22:11:21', '2021-11-02 22:11:21', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 22:11:21', '2021-11-02 22:11:21', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=105', 0, 'revision', '', 0),
(107, 1, '2021-11-02 22:16:43', '2021-11-02 22:16:43', '', 'logo inv', '', 'inherit', 'open', 'closed', '', 'logo-inv', '', '', '2021-11-02 22:16:43', '2021-11-02 22:16:43', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png', 0, 'attachment', 'image/png', 0),
(108, 1, '2021-11-02 22:19:12', '2021-11-02 22:19:12', '', 'grunge-paint-background', '', 'inherit', 'open', 'closed', '', 'grunge-paint-background', '', '', '2021-11-02 22:19:12', '2021-11-02 22:19:12', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/grunge-paint-background.jpg', 0, 'attachment', 'image/jpeg', 0),
(109, 1, '2021-11-02 22:19:54', '2021-11-02 22:19:54', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 22:19:54', '2021-11-02 22:19:54', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=109', 0, 'revision', '', 0),
(110, 1, '2021-11-02 22:19:54', '2021-11-02 22:19:54', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 22:19:54', '2021-11-02 22:19:54', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=110', 0, 'revision', '', 0),
(111, 1, '2021-11-02 22:19:55', '2021-11-02 22:19:55', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 22:19:55', '2021-11-02 22:19:55', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=111', 0, 'revision', '', 0),
(112, 1, '2021-11-02 22:20:21', '2021-11-02 22:20:21', '<a href="https://www.instagram.com/stylo.mode/" target="_blank" rel="noopener">\n						Instagram\n											</a>', 'Elementor Header #8', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2021-11-02 22:20:21', '2021-11-02 22:20:21', '', 8, 'http://stylosoul.grupogalileo.com.co/?p=112', 0, 'revision', '', 0),
(113, 1, '2021-11-02 22:22:27', '2021-11-02 22:22:27', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 22:22:27', '2021-11-02 22:22:27', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=113', 0, 'revision', '', 0),
(114, 1, '2021-11-02 22:22:27', '2021-11-02 22:22:27', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 22:22:27', '2021-11-02 22:22:27', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=114', 0, 'revision', '', 0),
(115, 1, '2021-11-02 22:22:27', '2021-11-02 22:22:27', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 22:22:27', '2021-11-02 22:22:27', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=115', 0, 'revision', '', 0),
(116, 1, '2021-11-02 22:23:20', '2021-11-02 22:23:20', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 22:23:20', '2021-11-02 22:23:20', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=116', 0, 'revision', '', 0),
(117, 1, '2021-11-02 22:23:20', '2021-11-02 22:23:20', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 22:23:20', '2021-11-02 22:23:20', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=117', 0, 'revision', '', 0),
(118, 1, '2021-11-02 22:23:20', '2021-11-02 22:23:20', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 22:23:20', '2021-11-02 22:23:20', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=118', 0, 'revision', '', 0),
(120, 1, '2021-11-02 23:21:05', '2021-11-02 23:21:05', '', 'Recurso 1', '', 'inherit', 'open', 'closed', '', 'recurso-1', '', '', '2021-11-02 23:21:05', '2021-11-02 23:21:05', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-1.png', 0, 'attachment', 'image/png', 0),
(121, 1, '2021-11-02 23:22:08', '2021-11-02 23:22:08', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 23:22:08', '2021-11-02 23:22:08', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=121', 0, 'revision', '', 0),
(122, 1, '2021-11-02 23:22:08', '2021-11-02 23:22:08', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 23:22:08', '2021-11-02 23:22:08', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=122', 0, 'revision', '', 0),
(123, 1, '2021-11-02 23:22:08', '2021-11-02 23:22:08', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 23:22:08', '2021-11-02 23:22:08', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=123', 0, 'revision', '', 0),
(125, 1, '2021-11-02 23:25:25', '2021-11-02 23:25:25', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 23:25:25', '2021-11-02 23:25:25', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=125', 0, 'revision', '', 0),
(126, 1, '2021-11-02 23:25:25', '2021-11-02 23:25:25', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 23:25:25', '2021-11-02 23:25:25', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=126', 0, 'revision', '', 0),
(127, 1, '2021-11-02 23:25:25', '2021-11-02 23:25:25', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-02 23:25:25', '2021-11-02 23:25:25', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=127', 0, 'revision', '', 0),
(129, 1, '2021-11-03 09:08:59', '2021-11-03 09:08:59', '', 'tit3', '', 'inherit', 'open', 'closed', '', 'tit3', '', '', '2021-11-03 09:08:59', '2021-11-03 09:08:59', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit3.png', 0, 'attachment', 'image/png', 0),
(130, 1, '2021-11-03 09:11:48', '2021-11-03 09:11:48', '', 'tit 03', '', 'inherit', 'open', 'closed', '', 'tit-03', '', '', '2021-11-03 09:11:48', '2021-11-03 09:11:48', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-03.png', 0, 'attachment', 'image/png', 0),
(131, 1, '2021-11-03 09:13:47', '2021-11-03 09:13:47', '', 'pexels-egecan-köse-7459072', '', 'inherit', 'open', 'closed', '', 'pexels-egecan-kose-7459072', '', '', '2021-11-03 09:13:47', '2021-11-03 09:13:47', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072.jpg', 0, 'attachment', 'image/jpeg', 0),
(132, 1, '2021-11-03 09:16:05', '2021-11-03 09:16:05', '', 'pexels-eberhard-grossgasteiger-1292115', '', 'inherit', 'open', 'closed', '', 'pexels-eberhard-grossgasteiger-1292115', '', '', '2021-11-03 09:16:05', '2021-11-03 09:16:05', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115.jpg', 0, 'attachment', 'image/jpeg', 0),
(133, 1, '2021-11-03 09:18:32', '2021-11-03 09:18:32', '', 'pexels-aleksandar-pasaric-1527934', '', 'inherit', 'open', 'closed', '', 'pexels-aleksandar-pasaric-1527934', '', '', '2021-11-03 09:18:32', '2021-11-03 09:18:32', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-aleksandar-pasaric-1527934.jpg', 0, 'attachment', 'image/jpeg', 0),
(134, 1, '2021-11-03 09:20:09', '2021-11-03 09:20:09', '', 'tit 04', '', 'inherit', 'open', 'closed', '', 'tit-04', '', '', '2021-11-03 09:20:09', '2021-11-03 09:20:09', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png', 0, 'attachment', 'image/png', 0),
(135, 1, '2021-11-03 09:20:22', '2021-11-03 09:20:22', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:20:22', '2021-11-03 09:20:22', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=135', 0, 'revision', '', 0),
(136, 1, '2021-11-03 09:20:22', '2021-11-03 09:20:22', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="1000" height="637" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1.jpg 1000w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-300x191.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/modelo-1-768x489.jpg 768w" sizes="(max-width: 1000px) 100vw, 1000px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:20:22', '2021-11-03 09:20:22', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=136', 0, 'revision', '', 0),
(137, 1, '2021-11-03 09:20:23', '2021-11-03 09:20:23', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="300" height="200" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 300px) 100vw, 300px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:20:23', '2021-11-03 09:20:23', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=137', 0, 'revision', '', 0),
(138, 1, '2021-11-03 09:21:37', '2021-11-03 09:21:37', '', 'mujer', '', 'inherit', 'open', 'closed', '', 'mujer', '', '', '2021-11-03 09:21:37', '2021-11-03 09:21:37', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer.jpg', 0, 'attachment', 'image/jpeg', 0),
(139, 1, '2021-11-03 09:23:42', '2021-11-03 09:23:42', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="300" height="200" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 300px) 100vw, 300px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:23:42', '2021-11-03 09:23:42', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=139', 0, 'revision', '', 0),
(140, 1, '2021-11-03 09:23:42', '2021-11-03 09:23:42', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="300" height="200" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 300px) 100vw, 300px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:23:42', '2021-11-03 09:23:42', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=140', 0, 'revision', '', 0),
(141, 1, '2021-11-03 09:23:42', '2021-11-03 09:23:42', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:23:42', '2021-11-03 09:23:42', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=141', 0, 'revision', '', 0),
(143, 1, '2021-11-03 09:25:08', '2021-11-03 09:25:08', '', 'pexels-nick-collins-1293120', '', 'inherit', 'open', 'closed', '', 'pexels-nick-collins-1293120', '', '', '2021-11-03 09:25:08', '2021-11-03 09:25:08', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-nick-collins-1293120.jpg', 0, 'attachment', 'image/jpeg', 0),
(144, 1, '2021-11-03 09:25:30', '2021-11-03 09:25:30', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:25:30', '2021-11-03 09:25:30', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=144', 0, 'revision', '', 0);
INSERT INTO `wpui_posts` VALUES
(145, 1, '2021-11-03 09:25:30', '2021-11-03 09:25:30', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:25:30', '2021-11-03 09:25:30', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=145', 0, 'revision', '', 0),
(146, 1, '2021-11-03 09:25:31', '2021-11-03 09:25:31', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:25:31', '2021-11-03 09:25:31', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=146', 0, 'revision', '', 0),
(147, 1, '2021-11-03 09:30:26', '2021-11-03 09:30:26', '', 'fondo01', '', 'inherit', 'open', 'closed', '', 'fondo01', '', '', '2021-11-03 09:30:26', '2021-11-03 09:30:26', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/fondo01.jpg', 0, 'attachment', 'image/jpeg', 0),
(149, 1, '2021-11-03 09:34:07', '2021-11-03 09:34:07', '', 'letras', '', 'inherit', 'open', 'closed', '', 'letras', '', '', '2021-11-03 09:34:07', '2021-11-03 09:34:07', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png', 0, 'attachment', 'image/png', 0),
(150, 1, '2021-11-03 09:35:42', '2021-11-03 09:35:42', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:35:42', '2021-11-03 09:35:42', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=150', 0, 'revision', '', 0),
(151, 1, '2021-11-03 09:35:42', '2021-11-03 09:35:42', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:35:42', '2021-11-03 09:35:42', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=151', 0, 'revision', '', 0),
(152, 1, '2021-11-03 09:35:42', '2021-11-03 09:35:42', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:35:42', '2021-11-03 09:35:42', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=152', 0, 'revision', '', 0),
(154, 1, '2021-11-03 09:37:59', '2021-11-03 09:37:59', '', 'laura02', '', 'inherit', 'open', 'closed', '', 'laura02', '', '', '2021-11-03 09:37:59', '2021-11-03 09:37:59', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg', 0, 'attachment', 'image/jpeg', 0),
(155, 1, '2021-11-03 09:38:35', '2021-11-03 09:38:35', '', 'laura03', '', 'inherit', 'open', 'closed', '', 'laura03', '', '', '2021-11-03 09:38:35', '2021-11-03 09:38:35', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg', 0, 'attachment', 'image/jpeg', 0),
(156, 1, '2021-11-03 09:39:22', '2021-11-03 09:39:22', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:39:22', '2021-11-03 09:39:22', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=156', 0, 'revision', '', 0),
(157, 1, '2021-11-03 09:39:22', '2021-11-03 09:39:22', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:39:22', '2021-11-03 09:39:22', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=157', 0, 'revision', '', 0),
(158, 1, '2021-11-03 09:39:22', '2021-11-03 09:39:22', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:39:22', '2021-11-03 09:39:22', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=158', 0, 'revision', '', 0),
(160, 1, '2021-11-03 09:41:04', '2021-11-03 09:41:04', '', 'hojas', '', 'inherit', 'open', 'closed', '', 'hojas', '', '', '2021-11-03 09:41:04', '2021-11-03 09:41:04', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/hojas.jpg', 0, 'attachment', 'image/jpeg', 0),
(161, 1, '2021-11-03 09:42:54', '2021-11-03 09:42:54', '', 'hojascolor', '', 'inherit', 'open', 'closed', '', 'hojascolor', '', '', '2021-11-03 09:42:54', '2021-11-03 09:42:54', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/hojascolor.jpg', 0, 'attachment', 'image/jpeg', 0),
(162, 1, '2021-11-03 09:43:40', '2021-11-03 09:43:40', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:43:40', '2021-11-03 09:43:40', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=162', 0, 'revision', '', 0),
(163, 1, '2021-11-03 09:43:41', '2021-11-03 09:43:41', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:43:41', '2021-11-03 09:43:41', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=163', 0, 'revision', '', 0),
(164, 1, '2021-11-03 09:43:41', '2021-11-03 09:43:41', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:43:41', '2021-11-03 09:43:41', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=164', 0, 'revision', '', 0),
(165, 1, '2021-11-03 09:44:09', '2021-11-03 09:44:09', '<a href="https://www.instagram.com/stylo.mode/" target="_blank" rel="noopener">\n						Instagram\n											</a>', 'Elementor Header #8', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2021-11-03 09:44:09', '2021-11-03 09:44:09', '', 8, 'http://stylosoul.grupogalileo.com.co/?p=165', 0, 'revision', '', 0),
(166, 1, '2021-11-03 09:45:12', '2021-11-03 09:45:12', '<a href="https://www.instagram.com/stylo.mode/" target="_blank" rel="noopener">\n						Instagram\n											</a>', 'Elementor Header #8', '', 'inherit', 'closed', 'closed', '', '8-revision-v1', '', '', '2021-11-03 09:45:12', '2021-11-03 09:45:12', '', 8, 'http://stylosoul.grupogalileo.com.co/?p=166', 0, 'revision', '', 0),
(167, 1, '2021-11-03 09:50:06', '2021-11-03 09:50:06', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:50:06', '2021-11-03 09:50:06', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=167', 0, 'revision', '', 0);
INSERT INTO `wpui_posts` VALUES
(168, 1, '2021-11-03 09:50:06', '2021-11-03 09:50:06', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:50:06', '2021-11-03 09:50:06', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=168', 0, 'revision', '', 0),
(169, 1, '2021-11-03 09:50:06', '2021-11-03 09:50:06', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:50:06', '2021-11-03 09:50:06', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=169', 0, 'revision', '', 0),
(170, 1, '2021-11-03 09:54:59', '2021-11-03 09:54:59', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:54:59', '2021-11-03 09:54:59', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=170', 0, 'revision', '', 0),
(171, 1, '2021-11-03 09:54:59', '2021-11-03 09:54:59', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:54:59', '2021-11-03 09:54:59', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=171', 0, 'revision', '', 0),
(172, 1, '2021-11-03 09:54:59', '2021-11-03 09:54:59', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:54:59', '2021-11-03 09:54:59', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=172', 0, 'revision', '', 0),
(173, 1, '2021-11-03 09:55:24', '2021-11-03 09:55:24', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:55:24', '2021-11-03 09:55:24', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=173', 0, 'revision', '', 0),
(174, 1, '2021-11-03 09:55:24', '2021-11-03 09:55:24', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:55:24', '2021-11-03 09:55:24', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=174', 0, 'revision', '', 0),
(175, 1, '2021-11-03 09:55:24', '2021-11-03 09:55:24', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 09:55:24', '2021-11-03 09:55:24', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=175', 0, 'revision', '', 0),
(177, 1, '2021-11-03 09:58:39', '2021-11-03 09:58:39', '', 'hojas02', '', 'inherit', 'open', 'closed', '', 'hojas02', '', '', '2021-11-03 09:58:39', '2021-11-03 09:58:39', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/hojas02.jpg', 0, 'attachment', 'image/jpeg', 0),
(178, 1, '2021-11-03 10:00:29', '2021-11-03 10:00:29', '', 'atrvete', '', 'inherit', 'open', 'closed', '', 'atrvete', '', '', '2021-11-03 10:00:29', '2021-11-03 10:00:29', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrvete.png', 0, 'attachment', 'image/png', 0),
(179, 1, '2021-11-03 10:01:42', '2021-11-03 10:01:42', '', 'atrevete2', '', 'inherit', 'open', 'closed', '', 'atrevete2', '', '', '2021-11-03 10:01:42', '2021-11-03 10:01:42', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2.png', 0, 'attachment', 'image/png', 0),
(180, 1, '2021-11-03 10:02:43', '2021-11-03 10:02:43', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:02:43', '2021-11-03 10:02:43', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=180', 0, 'revision', '', 0);
INSERT INTO `wpui_posts` VALUES
(181, 1, '2021-11-03 10:02:43', '2021-11-03 10:02:43', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:02:43', '2021-11-03 10:02:43', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=181', 0, 'revision', '', 0),
(182, 1, '2021-11-03 10:02:44', '2021-11-03 10:02:44', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="205" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2-300x77.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2-768x197.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:02:44', '2021-11-03 10:02:44', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=182', 0, 'revision', '', 0),
(183, 1, '2021-11-03 10:04:06', '2021-11-03 10:04:06', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="205" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2-300x77.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2-768x197.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:04:06', '2021-11-03 10:04:06', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=183', 0, 'revision', '', 0),
(184, 1, '2021-11-03 10:04:06', '2021-11-03 10:04:06', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="205" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2-300x77.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2-768x197.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:04:06', '2021-11-03 10:04:06', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=184', 0, 'revision', '', 0),
(185, 1, '2021-11-03 10:04:07', '2021-11-03 10:04:07', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="205" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2-300x77.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2-768x197.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:04:07', '2021-11-03 10:04:07', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=185', 0, 'revision', '', 0),
(186, 1, '2021-11-03 10:07:08', '2021-11-03 10:07:08', '', 'tit05', '', 'inherit', 'open', 'closed', '', 'tit05', '', '', '2021-11-03 10:07:08', '2021-11-03 10:07:08', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png', 0, 'attachment', 'image/png', 0),
(188, 1, '2021-11-03 10:10:53', '2021-11-03 10:10:53', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="205" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2-300x77.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2-768x197.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:10:53', '2021-11-03 10:10:53', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=188', 0, 'revision', '', 0),
(189, 1, '2021-11-03 10:10:53', '2021-11-03 10:10:53', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="205" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2-300x77.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/atrevete2-768x197.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:10:53', '2021-11-03 10:10:53', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=189', 0, 'revision', '', 0),
(190, 1, '2021-11-03 10:10:53', '2021-11-03 10:10:53', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="185" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-300x69.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-768x178.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:10:53', '2021-11-03 10:10:53', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=190', 0, 'revision', '', 0);
INSERT INTO `wpui_posts` VALUES
(191, 1, '2021-11-03 10:11:54', '2021-11-03 10:11:54', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="185" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-300x69.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-768x178.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:11:54', '2021-11-03 10:11:54', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=191', 0, 'revision', '', 0),
(192, 1, '2021-11-03 10:11:54', '2021-11-03 10:11:54', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="185" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-300x69.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-768x178.png 768w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:11:54', '2021-11-03 10:11:54', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=192', 0, 'revision', '', 0),
(193, 1, '2021-11-03 10:11:55', '2021-11-03 10:11:55', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="185" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-300x69.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-768x178.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:11:55', '2021-11-03 10:11:55', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=193', 0, 'revision', '', 0),
(194, 1, '2021-11-03 10:13:52', '2021-11-03 10:13:52', '', 'pexels-picjumbocom-196667', '', 'inherit', 'open', 'closed', '', 'pexels-picjumbocom-196667', '', '', '2021-11-03 10:13:52', '2021-11-03 10:13:52', '', 12, 'http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667.jpg', 0, 'attachment', 'image/jpeg', 0),
(195, 1, '2021-11-03 10:15:11', '2021-11-03 10:15:11', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="185" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-300x69.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-768x178.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:15:11', '2021-11-03 10:15:11', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=195', 0, 'revision', '', 0),
(196, 1, '2021-11-03 10:15:11', '2021-11-03 10:15:11', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="185" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-300x69.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-768x178.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:15:11', '2021-11-03 10:15:11', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=196', 0, 'revision', '', 0),
(197, 1, '2021-11-03 10:15:11', '2021-11-03 10:15:11', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-2048x1366.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="185" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-300x69.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-768x178.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="800" height="534" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:15:11', '2021-11-03 10:15:11', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=197', 0, 'revision', '', 0),
(198, 1, '2021-11-03 10:26:33', '2021-11-03 10:26:33', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-2048x1366.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="185" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-300x69.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-768x178.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="800" height="534" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:26:33', '2021-11-03 10:26:33', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=198', 0, 'revision', '', 0),
(199, 1, '2021-11-03 10:26:33', '2021-11-03 10:26:33', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-2048x1366.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="185" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-300x69.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-768x178.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="800" height="534" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:26:33', '2021-11-03 10:26:33', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=199', 0, 'revision', '', 0);
INSERT INTO `wpui_posts` VALUES
(200, 1, '2021-11-03 10:26:33', '2021-11-03 10:26:33', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-2048x1366.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="185" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-300x69.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-768x178.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="800" height="534" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:26:33', '2021-11-03 10:26:33', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=200', 0, 'revision', '', 0),
(201, 1, '2021-11-03 10:32:36', '2021-11-03 10:32:36', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-2048x1366.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="185" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-300x69.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-768x178.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="800" height="534" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:32:36', '2021-11-03 10:32:36', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=201', 0, 'revision', '', 0),
(202, 1, '2021-11-03 10:32:36', '2021-11-03 10:32:36', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-2048x1366.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="185" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-300x69.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-768x178.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="800" height="534" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:32:36', '2021-11-03 10:32:36', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=202', 0, 'revision', '', 0),
(203, 1, '2021-11-03 10:32:36', '2021-11-03 10:32:36', '<img width="800" height="463" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-300x174.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/Recurso-8-768x444.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="2560" height="1707" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-scaled.jpg 2560w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-picjumbocom-196667-2048x1366.jpg 2048w" sizes="(max-width: 2560px) 100vw, 2560px" />															\n															<img width="800" height="867" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-277x300.png 277w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-inv-768x832.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="636" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-300x239.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit-04-768x611.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="1207" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1018x1536.jpg 1018w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-199x300.jpg 199w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-679x1024.jpg 679w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-768x1158.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-1358x2048.jpg 1358w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/mujer-scaled.jpg 1697w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="800" height="175" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-300x66.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/letras-768x168.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="600" height="440" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web.png 600w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/logo-web-300x220.png 300w" sizes="(max-width: 600px) 100vw, 600px" />															\n															<img width="800" height="185" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05.png 800w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-300x69.png 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/tit05-768x178.png 768w" sizes="(max-width: 800px) 100vw, 800px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-576x1024.jpg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-169x300.jpg 169w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-768x1366.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-864x1536.jpg 864w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-1152x2048.jpg 1152w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-egecan-kose-7459072-scaled.jpg 1440w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="576" height="1024" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02.jpeg 576w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura02-169x300.jpeg 169w" sizes="(max-width: 576px) 100vw, 576px" />															\n															<img width="640" height="800" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03.jpeg 640w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/laura03-240x300.jpeg 240w" sizes="(max-width: 640px) 100vw, 640px" />															\n															<img width="800" height="534" src="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg" alt="" loading="lazy" srcset="http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1024x683.jpg 1024w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-300x200.jpg 300w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-768x512.jpg 768w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-1536x1024.jpg 1536w, http://stylosoul.grupogalileo.com.co/wp-content/uploads/2021/11/pexels-eberhard-grossgasteiger-1292115-2048x1365.jpg 2048w" sizes="(max-width: 800px) 100vw, 800px" />', 'Home', '', 'inherit', 'closed', 'closed', '', '12-revision-v1', '', '', '2021-11-03 10:32:36', '2021-11-03 10:32:36', '', 12, 'http://stylosoul.grupogalileo.com.co/?p=203', 0, 'revision', '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpui_termmeta`
--

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

-- --------------------------------------------------------

--
-- Table structure for table `wpui_terms`
--

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

--
-- Dumping data for table `wpui_terms`
--

INSERT INTO `wpui_terms` VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'header', 'header', 0),
(3, 'stylo menu', 'stylo-menu', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpui_term_relationships`
--

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

--
-- Dumping data for table `wpui_term_relationships`
--

INSERT INTO `wpui_term_relationships` VALUES
(1, 1, 0),
(8, 2, 0),
(37, 3, 0),
(38, 3, 0),
(39, 3, 0),
(40, 3, 0),
(41, 3, 0),
(42, 3, 0),
(43, 3, 0),
(99, 2, 0),
(100, 2, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wpui_term_taxonomy`
--

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

--
-- Dumping data for table `wpui_term_taxonomy`
--

INSERT INTO `wpui_term_taxonomy` VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'elementor_library_type', '', 0, 1),
(3, 3, 'nav_menu', '', 0, 7);

-- --------------------------------------------------------

--
-- Table structure for table `wpui_usermeta`
--

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

--
-- Dumping data for table `wpui_usermeta`
--

INSERT INTO `wpui_usermeta` VALUES
(1, 1, 'nickname', 'josehappy'),
(2, 1, 'first_name', ''),
(3, 1, 'last_name', ''),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'syntax_highlighting', 'true'),
(7, 1, 'comment_shortcuts', 'false'),
(8, 1, 'admin_color', 'fresh'),
(9, 1, 'use_ssl', '0'),
(10, 1, 'show_admin_bar_front', 'true'),
(11, 1, 'locale', ''),
(12, 1, 'wpui_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(13, 1, 'wpui_user_level', '10'),
(14, 1, 'dismissed_wp_pointers', ''),
(15, 1, 'show_welcome_panel', '1'),
(17, 1, 'wpui_dashboard_quick_press_last_post_id', '4'),
(18, 1, 'community-events-location', 'a:1:{s:2:"ip";s:12:"161.18.209.0";}'),
(19, 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";}'),
(20, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:28:"add-post-type-e-landing-page";i:1;s:12:"add-post_tag";}'),
(21, 1, 'nav_menu_recently_edited', '3'),
(22, 1, 'wpui_user-settings', 'libraryContent=browse'),
(23, 1, 'wpui_user-settings-time', '1635846533');

-- --------------------------------------------------------

--
-- Table structure for table `wpui_users`
--

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

--
-- Dumping data for table `wpui_users`
--

INSERT INTO `wpui_users` VALUES
(1, 'josehappy', '$P$B9/t1bTkV0opHoZKo5AtPKwE3gkOAy.', 'josehappy', 'admin@stylosoul.grupogalileo.com.co', 'http://stylosoul.grupogalileo.com.co', '2021-11-02 09:31:10', '', 0, 'josehappy');

-- --------------------------------------------------------

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
